RosettaCodeData/Task/String-length/Action-/string-length.action

9 lines
129 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
PROC Test(CHAR ARRAY s)
PrintF("Length of ""%S"" is %B%E",s,s(0))
RETURN
PROC Main()
Test("Hello world!")
Test("")
RETURN