Hello!

I was wondering if it was possible to "convert" a function (which may
also call functions) to a plain list of operators on parameters.
Example:

foo a b = a + b
bar a b = a * b

baw a b c = bar (foo a b) c
baw' a b c = (a + b) * c

Any way to get `baw'' from `baw'?  Preferrably as a String.

-- 
Evgeny

_______________________________________________
Haskell-Cafe mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to