renamed samples to examples

This commit is contained in:
cozis
2022-03-13 15:40:10 +01:00
parent bf25e0f1a9
commit eae8536e3b
11 changed files with 0 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
fun fail_at_depth(depth)
{
fun fail(current_depth)
{
assert(current_depth < depth);
fail(current_depth + 1);
}
fail(0);
}
fail_at_depth(9);