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

test : factorial 5;
..out test;