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

5 lines
154 B
Text
Raw Permalink Normal View History

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