/* Test enhanced compose function */ f : x -> x * 2; g : x -> x + 1; h : x -> x * x; /* Test enhanced compose with multiple functions */ result : compose(f, g, h) 2; ..out result;