dokondr <[email protected]> wrote: > This is a nice one, looks already like tiny DSL ) > > I think I've got the main idea - enumerate in my program all function > compositions in some data structure for Haskell to compile, and the > associate these with parameter values in external file.
In Haskell you get a not-even-too-tiny DSL for free for composing functions in arbitrary, dynamic ways. Hint: (a ->) is a monad and (->) is an ArrowChoice and an ArrowApply. Greets, Ertugrul -- nightmare = unsafePerformIO (getWrongWife >>= sex) http://ertes.de/ _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
