Created
October 6, 2019 20:24
-
-
Save kindaro/795997c4e96b396af742b40ad69c4264 to your computer and use it in GitHub Desktop.
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
import System.Exit (exitWith, ExitCode(ExitSuccess)) | |
import Graphics.UI.GLUT | |
main = do | |
(progName, _args) <- getArgsAndInitialize | |
initialDisplayMode $= [ SingleBuffered, RGBMode ] | |
initialWindowSize $= Size 500 500 | |
_ <- createWindow progName | |
exitWith ExitSuccess |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment