Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # setq2 is a setq which assigns a val to two symbols in one go
  2.  
  3. arc> (mac setq2 (v1 v2 x) `(do (= ,v1 ,x) (= ,v2 ,x)))
  4. #3(tagged mac #<procedure: setq2>)
  5. arc> (setq2 a b 3)
  6. 3
  7. arc> a
  8. 3
  9. arc> b
  10. 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement