An open API service indexing awesome lists of open source software.

https://github.com/blue32a-sandbox/haskell

Learning Haskell language
https://github.com/blue32a-sandbox/haskell

Last synced: 3 months ago
JSON representation

Learning Haskell language

Awesome Lists containing this project

README

        

# Learning Haskell language

https://www.haskell.org/

## GHC

### 対話環境 ghci

```
$ ghci
Prelude> "hello"
"hello"
```

### コンパイラ ghc

```
$ ghc hello.hs
$ ./hello
hello, world
```

### スクリプト実行環境 runghc

```
$ runghc hello.hs
hello, world
```