6 lines
108 B
Rexx
6 lines
108 B
Rexx
|
|
a=.array~of('A 1','B 2','a 3','b 3','A 5')
|
||
|
|
a~sortwith(.caselesscomparator~new)
|
||
|
|
Do i=1 To 5
|
||
|
|
Say a[i]
|
||
|
|
End
|