Advertisement
buss2

C# - kod 1

Jun 8th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. Console.WriteLine("Witaj świecie!"); //Zamiast Witaj świecie, możesz wpisać coś innego, ale pamiętaj o cudzysłowach!
  8. Console.WriteLine("Jestem fajny!");
  9. Console.WriteLine("Lubie C#!");
  10. Console.WriteLine("Skript the best!");
  11. Console.ReadKey(); //Żeby konsola od razu nam się nie zamknęła po wyświetleniu tekstu, czekamy aż użytkownik naciśnie dowolny klawisz
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement