fork download
  1. using static System.Console;
  2.  
  3. class ThreeLinesOutput
  4. {
  5. static void Main()
  6. {
  7. WriteLine("Line one");
  8. WriteLine("Line two");
  9. WriteLine("Line three");
  10. }
  11. }
  12.  
Success #stdin #stdout 0s 131520KB
stdin
Standard input is empty
stdout
Line one
Line two
Line three