RosettaCodeData/Task/String-length/PicoLisp/string-length.l

4 lines
138 B
Common Lisp

(let Str "møøse"
(prinl "Character Length of \"" Str "\" is " (length Str))
(prinl "Byte Length of \"" Str "\" is " (size Str)) )