This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## First version | |
We can consider two parts. | |
The first being mostly some boilerplate[^011]. | |
And the second part more focused on OpenGL and content. | |
[^011]: Generally in Haskell you need to declare a lot of import lines. | |
This is something I find annoying. | |
In particular, it should be possible to create a special file, Import.hs | |
which make all the necessary import for you, as you generally need them all. |