├── .gitignore ├── README.md ├── main.hs ├── run.sh └── spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | *.hi 3 | *.o 4 | main 5 | .liquid 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/haskell-scheme/HEAD/README.md -------------------------------------------------------------------------------- /main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/haskell-scheme/HEAD/main.hs -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | ghc main.hs 3 | rlwrap ./main 4 | -------------------------------------------------------------------------------- /spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/haskell-scheme/HEAD/spec.hs --------------------------------------------------------------------------------