about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_simple_when.txt
blob: 0b1154ff3eeb3dbff19ed7fa8de03cbf47b8884e (plain) (blame)
1
2
3
4
5
6
7
8
9
/* Simple when expression test */

factorial : n -> 
  when n is
    0 then 1
    _ then n * (factorial (n - 1));

result : factorial 5;
..out result;