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

4 lines
138 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(let Str "møøse"
(prinl "Character Length of \"" Str "\" is " (length Str))
(prinl "Byte Length of \"" Str "\" is " (size Str)) )