Changeset 25474 in project
- Timestamp:
- 11/01/11 17:00:58 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wiki/man/4/Getting started
r24766 r25474 323 323 The REPL also supports debugging commands: 324 324 input lines beginning with a {{,}} (comma) are treated as special 325 commands. (See the [[Using the interpreter#Toplevel commands|full list]].) We can 326 '''trace''' {{fact}} to see how it works. 327 328 #;5> ,tr fact 329 #;5> (fact 3) 330 |(fact 3) 331 | (fact 2) 332 | (fact 1) 333 | (fact 0) 334 | fact -> 1 335 | fact -> 1 336 | fact -> 2 337 |fact -> 6 338 6 339 340 The command number didn't increment, because the {{tr}} command isn't 341 actually a Scheme ''form''. 325 commands. (See the [[Using the interpreter#Toplevel commands|full list]].) 326 342 327 343 328 ==== Scripts
Note: See TracChangeset
for help on using the changeset viewer.