
Does literate programming in haskell (.lhs) support the idea in Knuth's WEB
of using aliases for blocks of code? In other words doing something like
main = do

On Sat, Sep 1, 2012 at 6:46 PM, Dennis Raddle
Does literate programming in haskell (.lhs) support the idea in Knuth's WEB of using aliases for blocks of code? In other words doing something like
main = do
=== putStrLn "foo" === putStrLn "bar" (except I don't know what the actual syntax is)
No, and it's not as necessary in Haskell as it was in Pascal because it's
easier (and preferred) to break programs up into smaller functions anyway.
So your
participants (2)
-
Brandon Allbery
-
Dennis Raddle