Last active
February 21, 2016 16:49
-
-
Save kasbah/7b2a8d75a111cf496cb1 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
#lang racket/gui | |
(define frame (new frame% | |
[label "Example"] | |
[width 300] | |
[height 300])) | |
(define black (make-color 0 0 0)) | |
(new canvas% [parent frame] | |
[paint-callback | |
(lambda (canvas dc) | |
(send dc set-scale 3 3) | |
(send dc set-text-foreground "blue") | |
(send canvas set-canvas-background black) | |
(send dc draw-text "Don't Panic!" 0 0))]) | |
(send frame show #t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment