>>> words (unwords [" "]) [] >>> unwords (words "foo\nbar") "foo bar"
>>> unwords ["Lorem", "ipsum", "dolor"] "Lorem ipsum dolor"
>>> unwords ["foo", "bar", "", "baz"] "foo bar baz"
>>> progn [require "this-lib", "function-from-this-lib arg", "(other-function arg2)"] "(progn (require (quote this-lib)) (function-from-this-lib arg) (other-function arg2))"
>>> list ["foo", "bar", "baz", "qux"] "(list foo bar baz qux)"
>>> saveExcursion [require "this-lib", "function-from-this-lib arg", "(other-function arg2)"] "(save-excursion (require (quote this-lib)) (function-from-this-lib arg) (other-function arg2))"