fork download
  1. using System;
  2. class Hello
  3. {
  4. static void Main() {
  5. try {
  6. Console.WriteLine("hello, world 0");
  7. }
  8. catch (Exception ex) {
  9. throw ex;
  10. Console.WriteLine("hello, world 1");
  11. }
  12. }
  13. }
  14.  
  15.  
Success #stdin #stdout 0.03s 36912KB
stdin
Standard input is empty
stdout
hello, world 0