Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Second program in LisP
Valemmil
Sep 15th, 2023
(
edited
)
1,707
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Lisp
0.17 KB
| Source Code
|
0
0
raw
download
clone
embed
print
report
(
defun
fullength
(
x
)
(
cond
(
(
null
x
)
0
)
(
(
atom
x
)
1
)
(
t
(
+
(
fullength
(
car
x
)
)
(
fullength
(
cdr
x
)
)
)
)
)
)
(
print
(
fullength `
(
1
2
3
4
5
3
)
)
)
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
✅ Account Leaks
JavaScript | 3 min ago | 0.08 KB
Instant Profit Method
JavaScript | 5 min ago | 1.13 KB
GMAIL Logs (2FA disabled)
JavaScript | 6 min ago | 0.08 KB
G2A Glitch (Working)
JavaScript | 8 min ago | 1.13 KB
✅ PayPal Hits
JavaScript | 9 min ago | 0.08 KB
Netflix Premium UHD Hits
JavaScript | 13 min ago | 0.08 KB
Free Giftcards Method
JavaScript | 14 min ago | 1.13 KB
✅ Crypto Accounts
JavaScript | 15 min ago | 0.08 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!