headers: sc_trunc - truncate via type casts
[supercollider.git] / testsuite / sclang / sclang_crash_3.scd
blob78c45f73f4b0c158a2b58da7d3f5f8315f97f404
1 ~f = {|i|
2         if (i == 0) {
3                 Exception("test").throw
4         } {
5                 ~f.(i-1)
6         };
7 };
9 try {
10         ~f.(100000)
11 } {
15 0.exit;