Facebook
From Lidia, 6 Months ago, written in C#.
This paste is a reply to Working with strings from Palma - view diff
Embed
Download Paste or View Raw
Hits: 156
  1. class Program
  2. {
  3.     static void Main()
  4.     {
  5.         // function calls here
  6.       LidiasPresentation();      
  7.      
  8.     }
  9.   static void LidiasPresentation(){
  10.         string name = "Lidia Madaras";
  11.         string profile = "Software Developer";
  12.         string hobby = "Reading";
  13.         string birthdate = "August 22, 2003";
  14.         string favoriteVerse = @"You're an angel, I'm a dog
  15. Or you're a dog and I'm your man
  16. You believe me like a god
  17. I'll destroy you like I am";
  18.  
  19.         //
  20.         Console.WriteLine("=== Presentation ===");
  21.         Console.WriteLine("Favorite Music Verse:");
  22.         Console.WriteLine($"{favoriteVerse}");
  23.  
  24.         Console.WriteLine("nDetails About Myself:");
  25.         Console.WriteLine($"Name: {name}");
  26.         Console.WriteLine($"Profile: {profile}");
  27.         Console.WriteLine($"Hobby: {hobby}");
  28.         Console.WriteLine($"Birthdate: {birthdate}");
  29.  
  30.         Console.WriteLine("====================");
  31.  
  32.     }
  33.  
  34. }
  35.  
  36.