Advertisement
Guest User

Untitled

a guest
Apr 24th, 2022
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.40 KB | None | 0 0
  1. CL-USER> (format t "~64,'0B"
  2.                  (let ((res #x0000000000000000))
  3.                    (dotimes (i 8 res)
  4.                      (setf res
  5.                            (dpb
  6.                             (ldb (byte 8 (- 56 (* 8 i))) 259)
  7.                             (byte 8 (* 8 i))
  8.                             res)))))
  9. 0000001100000001000000000000000000000000000000000000000000000000
  10. NIL
  11. CL-USER>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement