Facebook
From Bereczki-Kiraly Romeo, 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: 166
  1. class Program
  2. {
  3.     static void Main()
  4.     {
  5.       RomeosPresentation();
  6.     }
  7.      
  8.       static void RomeosPresentation()
  9.         {
  10.             Console.WriteLine("--- Romeo's presentation ---n");
  11.             Console.WriteLine("A verse from my favorite music:n");
  12.             string favoriteMusic = @"Baby, baby tell me more of your lies
  13.    Say you want me for a lifetime
  14.    I believe you even when I know it's a lie
  15.    Love's so blind
  16.    Sweet true lies";
  17.             string name = "tBereczki-Kiraly Romeo";
  18.             string profile = "I am a 20 year old boy, who is currently attending Informatics classes at Sapientia university.";
  19.             string hobby = "My hobbies are playing video games, watching series and analyzing every little detail about them.";
  20.             string birthDate = "I was born on the 21st of October, in 2003";
  21.             Console.WriteLine(favoriteMusic);
  22.             Console.WriteLine("About me:");
  23.             Console.WriteLine($"tName: {name}");
  24.             Console.WriteLine($"tProfile: {profile}");
  25.             Console.WriteLine($"tHobby: {hobby}");
  26.             Console.WriteLine($"tbirthDate: {birthDate}");
  27.         }
  28.      
  29.      
  30.  }
  31.  
  32.