Facebook
From Illés Izabella, 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
       IzabellasPresentation();
    }
  
   static void IzabellasPresentation() {
            Console.WriteLine(@"Lyrics from 505 by Arctic Monkeys
            Not shy of a spark
            The knife twists at the thought that I should fall short of the mark
            Frightened by the bite, though it's no harsher than the bark
            The middle of adventure, such a perfect place to start");

            string name = "Izabella";
            string profile = "Informatics";
            string hobby = "reading";
            string birthDate = "27.11.2002";

            Console.WriteLine($"My name is {name}, born on {birthDate},nI study {profile} and I like {hobby}.n");
     }
}