Skip to content

Commit cd91101

Browse files
author
Ian Eyberg
committed
adding in haskell example
1 parent a14da34 commit cd91101

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

haskell/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Haskell Hello World
2+
==================
3+
4+
compile:
5+
6+
```sh
7+
ghc -o hi hi.hs
8+
```
9+
10+
run:
11+
12+
```sh
13+
$ ops run hi
14+
```

haskell/hi.hs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
main = putStrLn "Hello, World!"

0 commit comments

Comments
 (0)