Caesar cipher: Difference between revisions

m
Line 1,849:
 
=={{header|Common Lisp}}==
====Main solutionversion====
<lang lisp>(defun encipher-char (ch key)
(let* ((c (char-code ch)) (la (char-code #\a)) (ua (char-code #\A))
422

edits