From 62ef5b2814a370a2b4c71352d780360b5c32af66 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Mon, 16 Feb 2009 12:53:56 +0000 Subject: [PATCH] added comment about colorings in drscheme svn: r13657 --- collects/scribblings/htdp-langs/htdp-langs.scrbl | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/collects/scribblings/htdp-langs/htdp-langs.scrbl b/collects/scribblings/htdp-langs/htdp-langs.scrbl index 5d01540e59..030a4cc4d8 100644 --- a/collects/scribblings/htdp-langs/htdp-langs.scrbl +++ b/collects/scribblings/htdp-langs/htdp-langs.scrbl @@ -1,5 +1,6 @@ #lang scribble/doc @(require "common.ss") +@(require (for-label lang/htdp-beginner)) @title{@italic{How to Design Programs} Languages} @@ -7,6 +8,15 @@ The languages documented in this manual are provided by DrScheme to be used with the @italic{@link["http://www.htdp.org/"]{How to Design Programs}} book. +When programs in these languages are run in DrScheme, any part of the +program that was not run is highlighted in orange and black. These +colors are intended to give the programmer feedback about the parts of +the program that have not been tested. To avoid seeing these colors, +use @scheme[check-expect] to test your program. Of course, just +because you see no colors, does not mean that your program has been +fully tested; it simply means that each part of the program been run +(at least once). + @table-of-contents[] @;------------------------------------------------------------------------