RosettaCodeData/Task/String-length/Ecstasy/string-length.ecstasy

11 lines
286 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
module StrLen {
@Inject Console console;
void run(String s = "José") {
console.print($|For the string {s.quoted()}:
| Character length: {s.size}
| UTF-8 byte length: {s.calcUtf8Length()}
);
}
}