Last active
December 14, 2018 13:01
-
-
Save davexunit/047915e10246cf7eb5ab59ca08cb8535 to your computer and use it in GitHub Desktop.
chickadee hello world example
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
(use-modules (chickadee) | |
(chickadee math vector) | |
(chickadee render font)) | |
(define (draw alpha) | |
(draw-text "Hello, world!" #v(260.0 240.0))) | |
(run-game #:draw draw) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment