Order two numerical lists: Difference between revisions

Lhogho
(→‎{{header|Perl 6}}: use built-in)
(Lhogho)
Line 445:
{{trans|AutoHotkey}}
{{VI solution|LabVIEW_Order_two_numerical_lists.png}}
 
=={{header|Lhogho}}==
Uses standard '=' notation
 
<lang logo>print [1 2] = [1 2]
print [1 2] = [1 2 3]
print [1 3] = [1 2]
print [1 2 3] = [1 2]
 
make "list1 [1 2 3 4 5 6]
make "list2 [1 2 3 4 5 7]
print :list1 = :list2</lang>
 
output:
<lang logo>true
false
false
false
false</lang>
 
=={{header|Mathematica}}==
Anonymous user