Skip to content

Instantly share code, notes, and snippets.

@Raynes
Created November 7, 2009 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Raynes/228841 to your computer and use it in GitHub Desktop.
Save Raynes/228841 to your computer and use it in GitHub Desktop.
; SLIME 20091016
user> (shift-char-forward \a)
; Evaluation aborted.
user> (shift-char-forward 1)
; Evaluation aborted.
user> (shift-char-forward 1)
; Evaluation aborted.
user> (shift-char-forward 1)
; Evaluation aborted.
user> (ns cipher)
nil
cipher> (shift-char-forward 1)
; Evaluation aborted.
cipher> (shift-char-forward \r)
; Evaluation aborted.
cipher> (shift-char-forward1)
; Evaluation aborted.
cipher> (shift-char-forward 1)
; Evaluation aborted.
cipher> (shift-char-forward 1)
\d
cipher> (shift-char-forward \4)
; Evaluation aborted.
cipher> (shift-char-forward )
; Evaluation aborted.
cipher> (shift-char-forward 1)
\d
cipher> (shift-char-forward 4)
\g
cipher> (shift-char-forward 4 :d :bw)
\a
cipher> (cipher "abc")
; Evaluation aborted.
cipher> (cipher "abc")
"def"
cipher> (cipher "abc" :d :to)
"def"
cipher> (cipher "def" :d :from)
"abc"
cipher>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment