Facebook
From Zsombor, 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: 155
  1. using System;
  2.  
  3. class MySelf{
  4.  
  5.     static string firstName = "Csegezi";
  6.     static string lastName = "Zsombor";
  7.     static string birthDate = "2002.02.22";
  8.     static string profile = "computer science";
  9.     static string hobby = "football";
  10.  
  11.     static void Main(){
  12.         Console.WriteLine($"Hi! My name is {firstName} {lastName}.");
  13.         Console.WriteLine($"I was born in {birthDate}.");
  14.         Console.WriteLine($"I am learning {profile} and my main hobby is playing {hobby}");
  15.         Console.WriteLine($"My favorit verse from a music song is:");
  16.         Console.WriteLine($"I would've stayed at home");
  17.         Console.WriteLine($"'Cause I was doin' better alone");
  18.         Console.WriteLine($"But when you said, Hello");
  19.         Console.WriteLine($"I know that was the end of it all");
  20.         Console.WriteLine($"I should've stayed at home");
  21.         Console.WriteLine($"'Cause now there ain't no letting you go");
  22.     }
  23.  
  24.  
  25. }