Skip to content

Instantly share code, notes, and snippets.

@deech
Created November 28, 2013 20:39
Show Gist options
  • Save deech/7697831 to your computer and use it in GitHub Desktop.
Save deech/7697831 to your computer and use it in GitHub Desktop.
SBCL String Test
* (defparameter *noel* "noël")
*NOEL*
* (subseq *noel* 0 3)
"noë"
* (reverse *noel*)
"lëon"
* (length *noel*)
4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment