Guest User

Untitled

a guest
May 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (letrec-syntax
  2. ((helper
  3. (syntax-rules ()
  4. ((_ () (backw ...))
  5. (quote (backw ...)))
  6. ((_ (arg rest ...)(backw ...))
  7. (helper (rest ...)(arg backw ...))))))
  8. (helper (1 2 3 4 5) ()))
  9. ; -> (5 4 3 2 1)
Add Comment
Please, Sign In to add comment