[plt-scheme] list output
On Apr 29, 2009, at 9:47 AM, -gary- wrote:
> I have a list which I want to output. What would be the best way to
> do this?
(printf "~s\n" '(hello world))
> Also, is it possible to concatenate two lists together? For instance,
> if I have two separate lists of names.., in Scheme, how could I do
> something like:
> list1 += list2
(append list1 list2) computes the list that juxtaposes the items from
list1 and list2
>
> Thank you.
> _________________________________________________
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme