Skip to content

Instantly share code, notes, and snippets.

@myun2
Last active August 29, 2015 14:04
Show Gist options
  • Save myun2/279ac3d9dd129579eacd to your computer and use it in GitHub Desktop.
Save myun2/279ac3d9dd129579eacd to your computer and use it in GitHub Desktop.
Haskellを勉強する。

1日目

MacにGHCをインストール

$ brew install ghc

GHC は Glasgow Haskell Compiler の略。結構新しいMacだけどそれなりにインストールに時間がかかる(そもそもパッケージがでかくて、ダウンロードに時間がかかるっぽい)

1.1日目

とりあえずghci(GHCのインタプリタ。Rubyで言うirb的なもの)でHaskellしてみる 👍👍👍

Prelude> let foo x y = x + y
Prelude> foo 3 2
5

出来たー(fooは、x + yを行なう関数) 👍

1.9日目

神は今日一日の作業(ghci)を終える為に、Ctrl+Dを送った

Prelude> 
Leaving GHCi.
[Hi! Yourself. ~]$ 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment