Skip to content

Instantly share code, notes, and snippets.

@samth
Created January 12, 2012 23:22
Show Gist options
  • Select an option

  • Save samth/1603770 to your computer and use it in GitHub Desktop.

Select an option

Save samth/1603770 to your computer and use it in GitHub Desktop.
simple universe program
#lang racket
(require 2htdp/universe 2htdp/image)
(define (draw n)
(overlay (text (number->string n) 20 "green")
(empty-scene 200 200)))
(big-bang 0
[on-key (lambda (n k) 0)]
[on-tick add1]
[to-draw draw])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment