racket/collects/scribblings/drracket/common.rkt
Robby Findler abda257295 moved the 'send to repl' keystrokes to the manual (and added a test
suite to make sure the example code in the manual doesn't get stale)
2011-09-23 16:37:18 -05:00

18 lines
371 B
Racket

#lang racket/base
(require scribble/manual
(for-label racket
racket/gui/base))
(provide HtDP
drlang
(all-from-out scribble/manual)
(for-label (all-from-out racket
racket/gui/base)))
(define HtDP
(italic "How to Design Programs"))
(define (drlang . s)
(apply onscreen s))