I have a list of symbols '(a b c) that I want to be printed "a b c" as part of string I'm formatting. Instead of writing [assume the list is bound to syms]
(format "~a" (string-join (map symbol->string syms) " ")) I'd much rather write something like (format "~@a" syms) And have format do this for me. 1) Would other people also like this as part of format strings? 2) Is there a better way to write my first attempt without changing format string? -Ian _________________________________________________ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/users