about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_functions.txt
blob: 8e3ea4355d85a94cd4eb2ec343a352baa5652147 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Test individual functions */
f1 : x -> x + 1;
f2 : x -> x * 2;
f3 : x -> x - 1;

test1 : f1 10;
test2 : f2 10;
test3 : f3 10;

..out "f1(10) = ";
..out test1;
..out "f2(10) = ";
..out test2;
..out "f3(10) = ";
..out test3;