/* Test nested pipe function */ f1 : x -> x + 1; f2 : x -> x * 2; f3 : x -> x - 1; nested_pipe : pipe @f1 (pipe @f2 @f3) 10; ..out "nested_pipe = "; ..out nested_pipe;