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

test : factorial 5;
..out test;