Advertisement
kyrathasoft

hello world

Jul 21st, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2. /*
  3. from Lesson 01 in introductory C# console programming series:
  4. http://williammillerservices.com/windows-c-console-programming/
  5. prints 'Hello world!' to the console
  6. pastebin.com -> https://pastebin.com/A6YSk4Wj
  7. GitHub gist -> https://gist.github.com/kyrathasoft/6f38f0e1207cd97eae4f181227cfafb1
  8. */
  9. namespace HelloWorld{
  10.     class Hello{
  11.         static void Main(){
  12.             Console.WriteLine("Hello world!");
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement