c# hello world


SUBMITTED BY: analias

DATE: Aug. 31, 2019, 10:19 a.m.

FORMAT: Text only

SIZE: 329 Bytes

HITS: 915

  1. namespace HelloWorld
  2. {
  3. class Hello {
  4. static void Main(string[] args)
  5. {
  6. System.Console.WriteLine("Hello World!");
  7. }
  8. }
  9. }
  10. hello world, a classic among beginner programmers
  11. using code to print out text is one of the most important and simple steps of learning a language

comments powered by Disqus