Facebook
From Nagy Botond, 5 Months 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 BotisPresentation()
    {
        
        string favoriteVerse = @"
            Grab your coat
            Grab your hat, baby
            Leave your worries on the doorstep
            Just direct your feet
            On the sunny side of the street";

        
        string personalInfo = $@"
            Name: Nagy Botond
            Profile: Student
            Hobby: Music and photography
            Birth Date: 2003.12.11
            Nationality: Hungarian";

        
        Console.WriteLine(favoriteVerse);
        Console.WriteLine(personalInfo);
        
    }
    static void Main()
    {
        // function calls here
BotisPresentation();
    }
}