Facebook
From Nagy Botond, 5 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: 195
  1. class Program
  2. {
  3.   static void BotisPresentation()
  4.     {
  5.        
  6.         string favoriteVerse = @"
  7.            Grab your coat
  8.            Grab your hat, baby
  9.            Leave your worries on the doorstep
  10.            Just direct your feet
  11.            On the sunny side of the street";
  12.  
  13.        
  14.         string personalInfo = $@"
  15.            Name: Nagy Botond
  16.            Profile: Student
  17.            Hobby: Music and photography
  18.            Birth Date: 2003.12.11
  19.            Nationality: Hungarian";
  20.  
  21.        
  22.         Console.WriteLine(favoriteVerse);
  23.         Console.WriteLine(personalInfo);
  24.        
  25.     }
  26.     static void Main()
  27.     {
  28.         BotisPresentation();
  29.     }
  30. }
  31.