Compare length of two strings: Difference between revisions

m
Line 205:
compare_and_report_length(A, B)
print()</lang>
{{out}}<pre>Naive
Naive
"I am string" has length 11 and is shorter
"I am string too" has length 15 and is longer
Line 212 ⟶ 211:
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</pre>
</pre>
 
=={{header|Raku}}==