Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
list1 = "1, 2, 1, 5, 2"
|
||||
list2 = "5, 2, 1, 5, 2, 2"
|
||||
list3 = "1, 2, 3, 4, 5"
|
||||
list4 = "1, 2, 3, 4, 5"
|
||||
|
||||
if order(list1, list2) = 0 see "list1=list2" + nl
|
||||
but order(list1, list2) < 0 see "list1<list2" + nl
|
||||
else see "list1>list2" + nl ok
|
||||
|
||||
if order(list2, list3) = 0 see "list2=list3" + nl
|
||||
but order(list2, list3) < 0 see "list2<list3" + nl
|
||||
else see "list2>list3" + nl ok
|
||||
|
||||
if order(list3, list4) = 0 see "list3=list4" + nl
|
||||
but order(list3, list4) < 0 see "list3<list4" + nl
|
||||
else see "list3>list4" + nl ok
|
||||
|
||||
func order alist, blist
|
||||
return strcmp(alist, blist)
|
||||
Loading…
Add table
Add a link
Reference in a new issue