31 Mar
2009
31 Mar
'09
4:22 a.m.
Sebastiaan Visser wrote:
A nice addition would be to output a C AST from language-c: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/language-c And compile and link that back into your program! Nice toys indeed. Lennart, what is the next language DSL you are going to build? Prolog? XSLT? Maybe SQL over HDBC? For exampl: main = do curs <- selectSQL FirstName, LastName, Age from Peoples putStrLn . unlines $ map show curs
Where curs :: [(String, String, Int)]