Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. '(1 2 (+ 0 3)) -> (1 2 (+ 0 3))
  2. (list 1 2 (+ 0 3)) -> (1 2 3)
  3.  
  4. #(1 2 (+ 0 3)) -> #(1 2 3)
  5. (vector 1 2 (+ 0 3)) -> #(1 2 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement