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.
 
 
 
 
 
 

13 line
93 B

  1. ((lambda (x) (* x x)) 2)
  2. (setq a 3)
  3. (let ((a 10))
  4. (let ((b 5))
  5. (setq a 4))
  6. a)
  7. a