Facebook
From Orban Botond, 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 Re: Working with strings
class Program
{
    static void Main()
    {
        // function calls here
BotondsPresentation();
    }
  static void BotondsPresentation (){
        string favoriteMusicVerse = @"
        Wish we could turn back time
        To the good old days
        When our mama sang us to sleep
        But now we're stressed out";

        string firstName = "Orban";
        string lastName = "Botond";
        string name = firstName + " " + lastName;
        string hobby = "Soccer, Music, Programming";
        string profile = "Student";
        string birthDate = "2002.12.17";

        Console.WriteLine($@"Name: {name}
Profile: {profile}
Hobby: {hobby}
Birth Date: {birthDate}
Favorite Music Verse:{favoriteMusicVerse}");
    }
}
}