fork download
  1. // Namespace Declaration
  2. using System;
  3.  
  4. // Program start class
  5. class WelcomeCSS
  6. {
  7. // Main begins program execution.
  8. static void Main()
  9. {
  10. // Write to console
  11. Console.WriteLine("Welcome to the C# Station Tutorial!"); 
  12.  
  13. // Make window wait for input
  14. Console.ReadLine();
  15. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(15,9): error CS8025: Parsing error
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty