RosettaCodeData/Task/String-length/Modula-3/string-length-2.mod3

10 lines
180 B
Plaintext

MODULE StringLength EXPORTS Main;
IMPORT IO, Fmt, Text;
VAR s: TEXT := "Foo bar baz";
BEGIN
IO.Put("String length of s: " & Fmt.Int(Text.Length(s)) & "\n");
END StringLength.