fork download
  1. using system;
  2. using systen.Collections.Generic;
  3. using system.Linq;
  4. using system.Text;
  5.  
  6. namespace HelloWorld
  7. {
  8. class HelloWorld
  9. {
  10. static void Main(string[]args)
  11. {
  12. Console.Out.Writeline("Hello World");
  13. Console.Out.WriteLine("i am a naughty 80 Year old woman")
  14. Console.In.ReadLine();
  15. }
  16. }
  17. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(14,16): error CS1525: Unexpected symbol `Console'
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty