Facebook
From Illés Izabella, 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: 162
  1. class Program
  2. {
  3.     static void Main()
  4.     {
  5.         // function calls here
  6.        IzabellasPresentation();
  7.     }
  8.  
  9.    static void IzabellasPresentation() {
  10.             Console.WriteLine(@"Lyrics from 505 by Arctic Monkeys
  11.            Not shy of a spark
  12.            The knife twists at the thought that I should fall short of the mark
  13.            Frightened by the bite, though it's no harsher than the bark
  14.            The middle of adventure, such a perfect place to start");
  15.  
  16.             string name = "Izabella";
  17.             string profile = "Informatics";
  18.             string hobby = "reading";
  19.             string birthDate = "27.11.2002";
  20.  
  21.             Console.WriteLine($"My name is {name}, born on {birthDate},nI study {profile} and I like {hobby}.n");
  22.      }
  23. }
  24.