RosettaCodeData/Task/Sort-an-integer-array/Eiffel/sort-an-integer-array.e

6 lines
114 B
Plaintext

local
l_array: SORTED_TWO_WAY_LIST [INTEGER]
do
create l_array.make_from_iterable (<<9,8,7,6,5,4,3,2,1,0>>)
end