diff options
Diffstat (limited to 'js/scripting-lang/c/test_sequence_debug.txt')
-rw-r--r-- | js/scripting-lang/c/test_sequence_debug.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/scripting-lang/c/test_sequence_debug.txt b/js/scripting-lang/c/test_sequence_debug.txt new file mode 100644 index 0000000..647c031 --- /dev/null +++ b/js/scripting-lang/c/test_sequence_debug.txt @@ -0,0 +1,6 @@ +factorial : n -> + when n is + 0 then 1 + _ then n * (factorial (n - 1)); + +y : factorial 3; \ No newline at end of file |