Created
November 13, 2013 15:48
-
-
Save funrep/7451267 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 qualified Graphics.UI.SDL as SDL | |
import qualified Graphics.UI.SDL.Primitives as SDL | |
main = do | |
SDL.init [SDL.InitEverything] | |
SDL.setVideoMode 640 480 32 [] >>= loop | |
loop screen = do | |
SDL.rectangle screen (SDL.Rect 50 50 100 100) (SDL.Pixel 101) | |
SDL.flip screen | |
loop screen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment