11 lines
180 B
Text
11 lines
180 B
Text
|
|
import ballerina/io;
|
||
|
|
|
||
|
|
function byteLen(string s) returns int {
|
||
|
|
return s.toBytes().length();
|
||
|
|
}
|
||
|
|
|
||
|
|
public function main() {
|
||
|
|
string s = "møøse";
|
||
|
|
io:println(byteLen(s));
|
||
|
|
}
|