home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-12-28 | 339 b | 15 lines | [TEXT/Help] |
- {••• Some code for a non so trivial stepper in Help •••}
- {••• Defines both STEPIN and STEPOUT •••}
-
- (let [(c 0)]
- (define (stepin f e)
- (=! c (1+ c))
- (prin c) (prin " -> ")
- (prin f) (prin " in ")
- (print (envar e)) (pause) c))
-
- (define (stepout c v)
- (prin c)
- (prin " <- ")
- (printdebug v)(pause))
-