[plt-scheme] why no display in DrScheme beginning student level?
Thank you for your very useful suggestions. I am terribly sorry for
posting an an inappropriate question to this list. If there had been
any mention of a plt-edu list (for example, from
http://www.plt-scheme.org/maillist/, or from the "How to Design Programs"
site (such as from http://www.htdp.org/2002-05-09/)) I would certainly
would have posted there instead.
Thank you,
-- Sharon Tuttle
Dept. of Computing Science
Humboldt State University
On Wed, 11 Sep 2002, Jamie L. Raymond wrote:
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
> Sharon M. Tuttle wrote:
> > Anyway, my students and I are noticing that, once you have a few
> > functions and tests in a file, it gets difficult to keep track of
> > which tests are which. I would like to use something like a c shell
> > "echo" command to just insert little comments before tests. I cannot
> > see how to do so in the "Beginning Student" level of DrScheme, however.
>
> What about just using strings? They'll get printed on separate lines in
> the output.
>
> For example
>
> #| Tests |#
>
> "Test 1"
> (f 3)
>
> "Test 2"
> (g 4)
>
> You might find the plt-edu list a more appropriate to ask questions
> regarding HtDP.
>
> --
> Jamie Raymond
>
>