fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. try
  8. {
  9. Console.WriteLine( "try");
  10. System.Environment.Exit( 0 );
  11. }
  12. finally
  13. {
  14. Console.WriteLine( "finally"); // Никогда не выполнится
  15. }
  16. }
  17. }
Success #stdin #stdout 0.03s 36824KB
stdin
Standard input is empty
stdout
try