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