Facebook
From Lidia, 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
      LidiasPresentation();      
      
    }
}
  static void LidiasPresentation(){
        string name = "Lidia Madaras";
        string profile = "Software Developer";
        string hobby = "Reading";
        string birthdate = "August 22, 2003";
        string favoriteVerse = @"You're an angel, I'm a dog
Or you're a dog and I'm your man
You believe me like a god
I'll destroy you like I am";

        //
        Console.WriteLine("=== Presentation ===");
        Console.WriteLine("Favorite Music Verse:");
        Console.WriteLine($"{favoriteVerse}");

        Console.WriteLine("nDetails About Myself:");
        Console.WriteLine($"Name: {name}");
        Console.WriteLine($"Profile: {profile}");
        Console.WriteLine($"Hobby: {hobby}");
        Console.WriteLine($"Birthdate: {birthdate}");

        Console.WriteLine("====================");

    }

}