about summary refs log tree commit diff stats
path: root/js/scripting-lang/tests/dev_01_simple_test.txt
blob: 74edad24e0dfc483e95d540ff1a7f18c8a719722 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* Simple test for function call parsing */

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

result : factorial 5;
..out result;