Advertisement
szze

C# Hello World

Dec 30th, 2022
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 KB | None | 0 0
  1. using System;
  2.  
  3. namespace HelloWorld
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char h = 'H';
  10.             char e = 'e';
  11.             char l1 = 'l';
  12.             char l2 = 'l';
  13.             char o = 'o';
  14.             char space = ' ';
  15.             char w = 'W';
  16.             char o2 = 'o';
  17.             char r = 'r';
  18.             char l3 = 'l';
  19.             char d = 'd';
  20.  
  21.             Console.Write(h);
  22.             Console.Write(e);
  23.             Console.Write(l1);
  24.             Console.Write(l2);
  25.             Console.Write(o);
  26.             Console.Write(space);
  27.             Console.Write(w);
  28.             Console.Write(o2);
  29.             Console.Write(r);
  30.             Console.Write(l3);
  31.             Console.Write(d);
  32.         }
  33.     }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement