10 lines
376 B
Scheme
10 lines
376 B
Scheme
(module info (lib "infotab.ss" "setup")
|
|
(define name "Errortrace")
|
|
(define doc.txt "doc.txt")
|
|
(define blurb
|
|
(list
|
|
"Errortrace is a Poor Man's stack-trace-on-exceptions/profiler for "
|
|
"MzScheme. Errortrace is not a complete debugger, and a real debugger "
|
|
"in DrScheme is imminent; meanwhile, using errortrace might be better "
|
|
"than nothing.")))
|