├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── example ├── .gitignore ├── Dockerfile ├── Makefile └── hello.hs /.gitignore: -------------------------------------------------------------------------------- 1 | /root/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/haskell-scratch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/haskell-scratch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/haskell-scratch/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | *.hi 2 | *.o 3 | hello 4 | -------------------------------------------------------------------------------- /example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/haskell-scratch/HEAD/example/Dockerfile -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/haskell-scratch/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/hello.hs: -------------------------------------------------------------------------------- 1 | main = putStrLn "Hello World" 2 | --------------------------------------------------------------------------------