Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace HelloWorld
- {
- class Program
- {
- static void Main(string[] args)
- {
- char h = 'H';
- char e = 'e';
- char l1 = 'l';
- char l2 = 'l';
- char o = 'o';
- char space = ' ';
- char w = 'W';
- char o2 = 'o';
- char r = 'r';
- char l3 = 'l';
- char d = 'd';
- Console.Write(h);
- Console.Write(e);
- Console.Write(l1);
- Console.Write(l2);
- Console.Write(o);
- Console.Write(space);
- Console.Write(w);
- Console.Write(o2);
- Console.Write(r);
- Console.Write(l3);
- Console.Write(d);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement