RosettaCodeData/Task/String-length/PicoLisp/string-length.l
2023-07-01 13:44:08 -04:00

3 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)) )