fork download
  1. //Kimberly Carlin
  2. //1302 Introduction to Programming
  3. //Program Set 1
  4.  
  5. using static System.Console;
  6. class ThreeLinesOutput
  7. {
  8. static void Main(string[] args)
  9. {
  10. WriteLine("Line one")
  11. WriteLine("Line two")
  12. WriteLine("Line three")
  13. }
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(11,4): error CS1525: Unexpected symbol `WriteLine'
prog.cs(12,4): error CS1525: Unexpected symbol `WriteLine'
prog.cs(13,4): error CS1002: ; expected
Compilation failed: 3 error(s), 0 warnings
stdout
Standard output is empty