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

10 lines
190 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
MODULE ByteLength EXPORTS Main;
IMPORT IO, Fmt, Text;
VAR s: TEXT := "Foo bar baz";
BEGIN
IO.Put("Byte length of s: " & Fmt.Int((Text.Length(s) * BYTESIZE(s))) & "\n");
END ByteLength.