Install haskell koans on windows -
i trying learn haskell using haskell koans https://github.com/haskvan/haskellkoans. installation instructions found not working , presumably linux. need koans working on windows.
if @ top of setup-koans
, you'll see:
#!/usr/bin/env runhaskell import control.monad (unless) ...etc
that first line hashbang indicates unix shell running file program should pass follows (the haskell source file, in case) command specified (/usr/bin/env runhaskell
in case).
if have ghc installation, , runghc
in path, should able remove line , runghc setup-koans
.
you might play cygwin, or linux virtual machine (e.g. in docker) familiarize sort of thing.
Comments
Post a Comment