Compare length of two strings: Difference between revisions

Line 205:
compare_and_report_length(A, B)
print()</lang>
{{out}}
Naive
"I am string" has length 11 and is shorter
"I am string too" has length 15 and is longer
 
Sophisticated
"I am string" has length 11 and is not the longest string
"I am string too" has length 15 and is the longest string
 
=={{header|Raku}}==