Guest User

Untitled

a guest
Jun 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. (define (findinlist list index)
  2. ((list? (car list)) (findinlist (car list) index) )
  3. (if (= index 0) (car list) (findinlist (cdr list) (- index 1))))
  4.  
  5. (findinlist '(1 2 3) 2)
  6. Error: vm-exception
  7. (car 1)
Add Comment
Please, Sign In to add comment