Facebook
From Gaspar Tamas, 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
{
   public static void TamassPresentation(){
        string favSongVers = @"
            Dans mon esprit tout divague, je me perds dans tes yeux
            Je me noie dans la vague de ton regard amoureux
            Je ne veux que ton âme divaguant sur ma peau
            Une fleur, une femme dans ton cœur Roméo
            Je ne suis que ton nom, le souffle lancinant
            De nos corps dans le sombre animés lentement
                            ";
        string name = "Tamas";
        string profile = "Student";
        string hobby = "playing football";
        string birthDate = "June 7, 2002";

        Console.WriteLine(favSongVers);

        Console.WriteLine(@$"
Hello, my name is {name}, i was born on {birthDate} and I am a {profile}. 
In my freetime i like {hobby}.
        ");
    }
    static void Main()
    {
        // function calls here
TamassPresentation();
    }
}