Last active
January 21, 2016 04:16
-
-
Save ahungry/94c8e255d6931b1cb2af to your computer and use it in GitHub Desktop.
Caesar Cipher with Common Lisp Glyphs package
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
(ƒ caesar-cipher | |
α → (let ((n (or αb 11))) | |
(coerce (ψ (ψ (coerce α 'list) | |
α → (mod (- (+ (char-code α) n) 97) 26)) | |
α → (code-char (+ 97 α))) 'string))) | |
Common Lisp using my package https://github.com/ahungry/glyphs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment