RosettaCodeData/Task/String-length/Ol/string-length.ol

8 lines
159 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
; Character length
(print (string-length "Hello, wørld!"))
; ==> 13
; Byte (utf-8 encoded) length
(print (length (string->bytes "Hello, wørld!")))
; ==> 14