Files
Noja/examples/deepfailure.noja
T
2022-03-13 15:40:10 +01:00

14 lines
151 B
Plaintext

fun fail_at_depth(depth)
{
fun fail(current_depth)
{
assert(current_depth < depth);
fail(current_depth + 1);
}
fail(0);
}
fail_at_depth(9);