You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was hoping to get Haskell support for running interpreted code using the runhaskell utility. Test code:
fibs:: [Int]
fibs =0:1:zipWith(+) fibs (tail fibs)
main =putStrLn$show$take10 fibs
The usual usage in a presentation would be to have warnings suppressed with the -w flag, although having some ability to customize this could be useful
$ runhaskell -w test.hs
[0,1,1,2,3,5,8,13,21,34]
The text was updated successfully, but these errors were encountered:
I was hoping to get Haskell support for running interpreted code using the
runhaskell
utility. Test code:The usual usage in a presentation would be to have warnings suppressed with the
-w
flag, although having some ability to customize this could be usefulThe text was updated successfully, but these errors were encountered: