fork download
  1. using System;
  2.  
  3. public class Test {
  4. public static string Ping() {
  5. try {
  6. throw new Exception("Pong");
  7. } catch(Exception ex) {
  8. return ex.Message;
  9. }
  10. return "";
  11. }
  12.  
  13. public static void Main() {
  14. Console.WriteLine("Ping: " + Ping());
  15. }
  16. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
Ping: Pong