about summary refs log tree commit diff stats
path: root/js/scripting-lang/nested_test.txt
blob: afb06776031f8782ad2b47a2b4fd4db557570d57 (plain) (blame)
1
2
3
4
5
6
7
/* Test nested function calls in case expressions */
factorial : n -> case n of
    0 : 1
    _ : factorial (n - 1);

test : factorial 5;
..out test; 
type annotation with the "is" keyword, like x is int : 1; double is int : x -> x * 2;