/* Test compose function order */ /* Create functions that show the order */ first : x -> x * 10; second : x -> x + 1; /* Test composition */ composed : compose(first, second); result : composed 5; ..out result; /* Expected: first(second(5)) = first(6) = 60 */