Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
range in scheme lisp
triclops200
Jun 28th, 2012
310
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Lisp
0.21 KB
| None
|
0
0
raw
download
clone
embed
print
report
(
define range
(
lambda
(
n m
)
(
cond
(
(
>
n m
)
'
(
)
)
(
#t
(
cond
(
(
=
m n
)
(
cons
n '
(
)
)
)
(
#t
(
append
(
range n
(
halfway n m
)
)
(
range
(
+
(
halfway n m
)
1
)
m
)
)
)
)
)
)
)
)
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Swapzone Glitch (Working)
JavaScript | 3 sec ago | 0.15 KB
ChangeNOW Bug (Get more on BTC swaps x) 5
JavaScript | 4 sec ago | 0.28 KB
Instant Profit Method
JavaScript | 10 sec ago | 0.15 KB
Exchange Exploit T O
JavaScript | 14 sec ago | 0.28 KB
✅ Exploit 500$ in 15 Minutes
JavaScript | 15 sec ago | 0.15 KB
ChangeNOW Exploit
JavaScript | 20 sec ago | 0.15 KB
✅ Make $15OO in 2O minutesV 1
JavaScript | 22 sec ago | 0.28 KB
GMAIL Logs (2FA disabled)
JavaScript | 25 sec ago | 0.15 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!