When I try to run (define-type on DrScheme, I got error "reference to an identifier before its definition: define-type", what is it happening?
I input:
(define-type GUI
[label (text string?)]
[button (text string?)
(enabled? boolean?)])
and I get result:
reference to an identifier before its definition: define-type
thanks.
Robert