mastodon.sdf.org is part of the decentralized social network powered by Mastodon.
"I appreciate SDF but it's a general-purpose server and the name doesn't make it obvious that it's about art." - Eugen Rochko

Administered by:

Server stats:

2.6K
active users

Learn more

screwlisp

Respond with your personal quine cold

(FORMAT
T
"(FORMAT T ~A~S~A ~0@* ~S (QUOTE ~S) ~S)"
#\"
(QUOTE
(PROGN (terpri)
(princ '|\;\;|) (princ '(can put anything here))
(terpri)
(princ '|\;\;|) (princ '(doublequotes are hard though.))
(terpri)
(FORMAT T ~A~S~A ~0@* ~S (QUOTE ~S) ~S)))
#\")

I feel like I forgot how to do this

Mar 21, 2025, 08:42 · · · 4 · 6

Respond with your personal quine cold

Or, does this even work. Using a lambda instead of a complex format.

Oh, yeah, I guess this one is way better.

(let ((a '(lambda (a) `(progn (print "Side effects") (terpri) (funcall ,a ',a)))))
`(,a ',a))

Respond with your personal quine cold

@screwtape In #PicoLisp it is either

('((X) (list (lit X) (lit X))) '((X) (list (lit X) (lit X))))
or

(let X '(list 'let 'X (lit X) X) (list 'let 'X (lit X) X))

#Lisp