about summary refs log tree commit diff stats
path: root/js/scripting-lang/debug_test.txt
blob: 246c3fdacb80e76d7e49f0339c9c8f1043aa6577 (plain) (blame)
1
2
3
4
5
6
7
/* Simple test for case expressions */
factorial : n -> case n of
    0 : 1
    _ : n * (factorial (n - 1));

test : factorial 5;
..out test;