svn: r12574

This commit is contained in:
Robby Findler 2008-11-23 02:39:36 +00:00
parent ecb39eedee
commit 70e85a62a9

View File

@ -165,11 +165,9 @@ setup/infotab
]
then the same collection would be expected to contain a
@File{tool.ss} file. It might contain something like this:
@schemeblock[
(module tool mzscheme
(require (lib "tool.ss" "drscheme")
mred
mzlib/unit)
@schememod[
scheme/gui
(require drscheme/tool)
(provide tool@)
@ -179,7 +177,7 @@ then the same collection would be expected to contain a
(export drscheme:tool-exports^)
(define (phase1) (message-box "tool example" "phase1"))
(define (phase2) (message-box "tool example" "phase2"))
(message-box "tool example" "unit invoked"))))
(message-box "tool example" "unit invoked")))
]
This tool just opens a few windows to indicate that it has
been loaded and that the @scheme[phase1] and @scheme[phase2]