RosettaCodeData/Task/String-length/Ecstasy/string-length.ecstasy
2024-07-13 15:19:22 -07:00

10 lines
286 B
Text

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()}
);
}
}