Facebook
From Gáll Benedek, 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: 168
  1. using System.Runtime.CompilerServices;
  2.  
  3. class Program
  4. {
  5.     static void Presentation(string name, string hobby, DateOnly birthday){
  6.         Console.WriteLine(@"One verse from my favorite music:
  7.        ""Gondoltam egye-fene, elindulok haza fele
  8.          Kezemben egy kover deckkel
  9.          A masikban egy hideg, felig ures uveg
  10.          Hat eleg hulye egy reggel...""");
  11.         Console.WriteLine($"Hello, my name is {name}. I was born on {birthday,20:D}.  One of my hobbies is {hobby}.");
  12.     }
  13.     static void Main(string[] args)
  14.     {
  15.         Presentation("Benedek", "boxing", new DateOnly(2002, 3, 20));
  16.     }
  17. }
  18.