🔥

【Haskell】Hello World

2024/06/16に公開

mise でインストールする場合、プラグインを追加する

mise plugin add ghc
mise install ghc
mise global ghc@9.10.1

homebrew の場合、GHCup を使ってインストールできる

brew install ghcup
ghcup install ghc 9.10.1

Hello World のコードを書く

hello.hs
main = putStrLn "Hello World"

実行する

runghc hello.hs

対話式シェルは ghci で起動できる

ghci
ghci> "Hello World"
"Hello World"
ghci> :quit

Discussion