fork(1) download
  1. class main
  2. {
  3. public static void Main()
  4. {
  5. System.Console.WriteLine("hello\nworld");
  6. System.Console.WriteLine("hello" + (char)10 + "world");
  7. }
  8. }
Success #stdin #stdout 0.02s 34728KB
stdin
Standard input is empty
stdout
hello
world
hello
world