fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine($"{Huh()}");
  8. }
  9.  
  10. public static int Huh()
  11. {
  12. try {
  13. return 2;
  14. } finally {
  15. Console.WriteLine("Heh, I ran anyways.");
  16. }
  17. }
  18. }
Success #stdin #stdout 0.02s 28100KB
stdin
Standard input is empty
stdout
Heh, I ran anyways.
2