[plt-scheme] list output

From: Matthias Felleisen (matthias at ccs.neu.edu)
Date: Wed Apr 29 09:52:36 EDT 2009

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



Posted on the users mailing list.