Facebook
From Márk András, 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: 151
  1. class Program
  2. {
  3.     static void Main()
  4.     {
  5.         MyPresentation();
  6.     }
  7.  
  8.    static void MyPresentation() {
  9.         string name = "Andras";
  10.         string hobby = "football";
  11.         string date = "2003-10-11";
  12.        string movie = "Dune";
  13.       Console.WriteLine($"Hi, my name is {name}, my hobby is {hobby} and i was bor in {date}, and my fave movie is {movie}");
  14.     }
  15. }
  16.