about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_debug_composition.txt
blob: 24947fc9d2ef235fc1ca06d48a0eddcb8893eb45 (plain) (blame)
1
2
3
4
5
6
7
/* Debug composition parsing */

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

/* Test basic composition */
result : f via g 5;