Compare length of two strings: Difference between revisions

Compare length of two strings in Asymptote
(Compare length of two strings in various BASIC dialents (BASIC256, PureBasic, QBasic, Run BASIC, True BASIC and Yabasic))
(Compare length of two strings in Asymptote)
Line 90:
3 abc
</lang>
 
=={{header|Asymptote}}==
<lang Asymptote>string A, B, t = '\t';
 
void comp(string A, string B) {
if (length(A) >= length(B)) {
write(A+t, length(A));
write(B+t, length(B));
} else {
write(B+t, length(B));
write(A+t, length(A));
}
}
 
comp("abcd", "123456789");</lang>
{{out}}
<pre>123456789 9
abcd 4</pre>
 
=={{header|AutoHotkey}}==
2,169

edits