RosettaCodeData/Task/String-length/Metafont/string-length.metafont

7 lines
221 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
string s;
s := "Hello Moose";
show length(s); % 11 (ok)
s := "Hello Møøse";
show length(s); % 13 (number of bytes when the string is UTF-8 encoded,
% since ø takes two bytes)