typed-racket/typed-racket-test/succeed/gui-lang.rkt
Asumu Takikawa 1999d0251b Allow #lang typed/racket/gui and add base module
This aligns the library structure of typed/racket/gui
to racket/gui.
2015-03-12 17:27:59 -04:00

9 lines
143 B
Racket

#lang typed/racket/gui
;; Test typed/racket/gui used as a language
(define (f #{x : Integer}) (add1 x))
(f 3)
(make-object bitmap% 300 300)