Skip to content

Instantly share code, notes, and snippets.

@kasbah
Last active February 21, 2016 16:49
Show Gist options
  • Save kasbah/7b2a8d75a111cf496cb1 to your computer and use it in GitHub Desktop.
Save kasbah/7b2a8d75a111cf496cb1 to your computer and use it in GitHub Desktop.
#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