RosettaCodeData/Task/String-length/Wren/string-length-1.wren

5 lines
172 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
System.print("møøse".bytes.count)
System.print("𝔘𝔫𝔦𝔠𝔬𝔡𝔢".bytes.count)
2025-08-11 18:05:26 -07:00
var jose = "J\u0332o\u0332s\u0332e\u0301\u0332"
System.print(jose.bytes.count)