Facebook
From Márk András, 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
MyPresentation();
    }
  
   static void MyPresentation() {
        string name = "Andras";
        string hobby = "football";
        string date = "2003-10-11";
       string movie = "Dune";
      Console.WriteLine($"Hi, my name is {name}, my hobby is {hobby} and i was bor in {date}, and my fave movie is {movie}");
    }
}