Guest User

Untitled

a guest
Jun 28th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.12 KB | None | 0 0
  1. (define (for from to func)
  2.     (cond ((= from to)
  3.            (func to)
  4.           (else
  5.             (func from)
  6.             (for (+ from 1) to func)))))
Advertisement
Add Comment
Please, Sign In to add comment