Facebook
From Szabó Nikoletta-Laura, 1 Year ago, written in C#.
This paste is a reply to Working with strings from Palma - go back
Embed
Viewing differences between Working with strings and bemutatkozas
using System;

class Program
{
    static void NikiPresentation()
    {
        string favoriteMusicVerse = @"Got any grapes?";

        string name = "Szabo Nikoletta-Laura";
        string profile = "computer science";
        string hobby = "reading";
        string birthDate = "2003/10/06";

        System.Console.Write("Favorite Music Verse: ");
        System.Console.Write(favoriteMusicVerse);
        System.Console.WriteLine();
        System.Console.WriteLine($"Name: {name}");
        System.Console.WriteLine($"Profile: {profile}");
        System.Console.WriteLine($"Hobby: {hobby}");
        System.Console.WriteLine($"Birth Date: {birthDate}");
    }
    static void Main()
    {
        // function calls here
    }
NikiPresentation();
    }

    
}