
In the HtDP languages, initial subexpressions that have evaluated to #t / #f remain in the residual term, whereas in the DMdA languages, they do not. svn: r16018
14 lines
362 B
Scheme
14 lines
362 B
Scheme
(module stepper-language-interface mzscheme
|
|
|
|
(require mzlib/class)
|
|
(provide stepper-language<%>)
|
|
|
|
(define stepper-language<%>
|
|
(interface ()
|
|
stepper:supported?
|
|
stepper:enable-let-lifting?
|
|
stepper:show-lambdas-as-lambdas?
|
|
stepper:show-inexactness?
|
|
stepper:show-consumed-and/or-clauses?
|
|
stepper:render-to-sexp)))
|