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
- Host: GitHub
- URL: https://github.com/blue32a-sandbox/haskell
- Owner: blue32a-sandbox
- Created: 2023-06-27T16:02:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-03T13:19:18.000Z (almost 2 years ago)
- Last Synced: 2025-01-19T15:38:23.434Z (5 months ago)
- Language: Haskell
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```