adding bug note on the printing of shared structures

This commit is contained in:
Danny Yoo 2011-11-11 16:15:47 -05:00
parent 8c632c57cf
commit b2726d4591

View File

@ -919,10 +919,20 @@ may be useful when deploying a finished program.
@section[#:tag "bugs"]{Known bugs and deviations} @section[#:tag "bugs"]{Known bugs and deviations}
Whalesong's compiler doesn't know how to compile programs with @itemize[
@item{Whalesong's compiler doesn't know how to compile programs with
embedded image snips. You can work around this by using embedded image snips. You can work around this by using
@racket[define-resource], and save an image file in the same directory @racket[define-resource], and save an image file in the same directory
as your source. as your source.}
@item{The printing of @racket[shared] structures currently doesn't use
the same syntax as in the standard cs019 language. For example,
@racket[(shared ([a (cons 1 a)]) a)] prints in Whalesong as @litchar{#0=(cons 1 #0#)}.}
]
@subsection{Deviations from the regular cs019 language} @subsection{Deviations from the regular cs019 language}