Files
cell/vm_test/try_catch_finally.txt
2026-02-05 10:44:53 -06:00

2 lines
71 B
Plaintext

var x = 1; try { throw 0 } catch(e) { x = 2 } finally { x = x + 1 }; x