Skip to content

Instantly share code, notes, and snippets.

@imphasing
Created August 4, 2011 14:03
Show Gist options
  • Save imphasing/1125217 to your computer and use it in GitHub Desktop.
Save imphasing/1125217 to your computer and use it in GitHub Desktop.
schemin> (define x (quote (3 2 1)))
()
schemin> x
(3 2 1 )
schemin> (append (quote (4 5)) x)
(4 5 3 2 1 )
schemin> x
(3 2 1 )
schemin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment