Facebook
From Levi, 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
      LeventesPresentation();
    }
}
    static void LeventesPresentation()
    {
        int age = 21;
        string firstName = "Kaffai";
        string lastName = "Levente";
        string profile = "Computer Science student";
        string hobby = "walking my dog and to make people laugh";
        string favoriteMusic =
        @"I'm a Barbie girl, in the Barbie world
Life in plastic, it's fantastic
You can brush my hair, undress me everywhere
Imagination, life is your creation";
        Console.WriteLine(@$"Hello, my name is {firstName} {lastName} and I'm {age} years old.
Im a {profile} and my hobby is {hobby}." + "n");
        Console.WriteLine($"One verse of my favourite music is:nn{favoriteMusic}");
    }