1 2 3 4 5 6 7 8 9 10
/* Test abs function */ abs : x -> when x is x < 0 then -x _ then x; result1 : abs -5; result2 : abs 5; ..out result1; ..out result2;