about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_function_reference.txt
blob: 6c3a60964e25ee6fcb8f36a2de4e1adabe13e92a (plain) (blame)
1
2
3
4
5
6
7
8
/* Test function references */

f : x -> x * 2;
g : x -> x + 1;

/* Test function reference */
ref : @f;
..out ref;