From 4cd0ba277eceb76dc93b34f2defabcd0d9fadde6 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 27 Apr 2011 06:09:30 -0600 Subject: [PATCH] remove `define-wish' from BSL for now Merge to 5.1.1 --- collects/lang/htdp-beginner.rkt | 2 +- collects/scribblings/htdp-langs/beginner.scrbl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/lang/htdp-beginner.rkt b/collects/lang/htdp-beginner.rkt index 0ea60daa6c..350e0bbf08 100644 --- a/collects/lang/htdp-beginner.rkt +++ b/collects/lang/htdp-beginner.rkt @@ -40,7 +40,7 @@ check-error check-member-of check-range - define-wish + ;; define-wish #%datum #%top-interaction empty true false diff --git a/collects/scribblings/htdp-langs/beginner.scrbl b/collects/scribblings/htdp-langs/beginner.scrbl index 4c91595190..814d7f927e 100644 --- a/collects/scribblings/htdp-langs/beginner.scrbl +++ b/collects/scribblings/htdp-langs/beginner.scrbl @@ -111,7 +111,7 @@ extraction, and type-like queries: The created names must not be the same as a primitive or another defined name.} @; ---------------------------------------------------------------------- - +@;{ ------- COMMENTED OUT FOR NOW --------- @section{@scheme[define-wish]} @defform[(define-wish id)]{ @@ -127,7 +127,7 @@ Wished-for functions are reported in the test report for the current program.} Similar to the above form, defines a wished-for function named @racket[id]. If the wished-for function is called with one value, the result of @scheme[expr] is returned as the default value. } - +} @; ---------------------------------------------------------------------- @section[#:tag "beginner-call"]{Function Calls}