是否可以在Windows中将一组.hs的haskell文件编译成exe? .hs – > .可执行程序
绝对.安装
the Haskell Platform,它为您提供了一个最先进的Haskell编译器
GHC.
@H_301_5@默认情况下,它编译为可执行文件,它在Linux或Windows上的工作相同.例如.
@H_301_5@给定一个文件:
$cat A.hs main = print "hello,world"@H_301_5@用GHC编译:
$ghc --make A.hs [1 of 1] Compiling Main ( A.hs,A.o ) Linking A.exe ...@H_301_5@你现在可以运行:
$./A.exe "hello,world"@H_301_5@注意,这是在Cygwin下.但同样适用于Windows:
C:\temp>ghc --make A.hs [1 of 1] Compiling Main ( A.hs,A.o ) Linking A.exe ... C:\temp>A.exe "hello,world"