DrDr props
svn: r15496
This commit is contained in:
parent
757999e8e7
commit
ba378b0a63
|
@ -1,3 +1,4 @@
|
|||
#lang frtime
|
||||
(require frtime/gui/simple)
|
||||
(require (rename mred horizontal-panel% horizontal-panel%))
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#lang frtime
|
||||
(require frtime/gui/mixin-macros frtime/gui/aux-mixin-macros)
|
||||
(require mzlib/class) ; require class utilities
|
||||
(require mred) ; require base mred library
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#lang frtime
|
||||
(require frtime/gui/simple)
|
||||
|
||||
(current-widget-parent (new ft-frame% (width 400) (stretchable-width #t)))
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
(mailbox-send! mb 25) => (void)
|
||||
((mailbox-receive mb #f error-timeout id-thnk)) => 25
|
||||
((mailbox-receive mb 10 error-timeout id-thnk)) =error> "never"
|
||||
(mailbox-send! mb #f) => (void)
|
||||
((mailbox-receive mb #f error-timeout id-thnk)) => #f
|
||||
;(mailbox-send! mb #f) => (void)
|
||||
;((mailbox-receive mb #f error-timeout id-thnk)) =error> "never"
|
||||
(mailbox-send! mb 21) => (void)
|
||||
((mailbox-receive mb 10 error-timeout (want-thnk 25))) =error> "never"
|
||||
((mailbox-receive mb 10 error-timeout (want-thnk 21))) => 21
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
(define question-answer caddr)
|
||||
(define question-explanation cadddr)
|
||||
|
||||
(define quiz (load *data-file*))
|
||||
(define quiz (with-input-from-file *data-file* read))
|
||||
(define quiz-intro (car quiz))
|
||||
(define all-questions (cadr quiz))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user