Order two numerical lists: Difference between revisions

→‎{{header|Lasso}}: Added Lasso contribution
(Added Erlang)
(→‎{{header|Lasso}}: Added Lasso contribution)
Line 483:
{{trans|AutoHotkey}}
{{VI solution|LabVIEW_Order_two_numerical_lists.png}}
 
 
=={{header|Lasso}}==
This is built into the Lasso comparison operators
<lang Lasso>local(
first = array(1,2,1,3,2),
second = array(1,2,0,4,4,0,0,0),
)
#first < #second
 
local(
first = array(1,1,1,3,2),
second = array(1,2,0,4,4,0,0,0),
)
#first < #second</lang>
""Output""
<pre>false
true</pre>
 
=={{header|Lhogho}}==
Anonymous user