about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_abs.txt
blob: c83d644595a300e08229d49aa91ed4b89680c288 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* Test abs function */
abs : x -> when x is
    x < 0 then -x
    _ then x;

result1 : abs -5;
result2 : abs 5;

..out result1;
..out result2;