You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 rivejä
187 B

  1. (+ 1 (- 100 7) 3)
  2. (defun unpack (&rest args)
  3. (car args))
  4. (unpack '(1 2))
  5. (defun add (&rest args)
  6. (if args
  7. (+ (first args)
  8. (apply 'add 'args)))
  9. 0)
  10. (add 2 123 99)