Last active
August 1, 2022 18:10
-
-
Save kosugi/b40040f4a637f46c8dd66db3f92cd52a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (use srfi-27) | |
| (let loop ((n 1)(a '(ドド スコ))) | |
| (if (= n #x777) | |
| (display 'ラブ注入♡) | |
| (let ((x (random-integer 2))) | |
| (display (list-ref a x)) | |
| (loop (logand #xFFF (+ n n x)) a)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment