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

4 lines
138 B
Text
Raw Permalink Normal View History

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