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;