Sorting algorithms/Selection sort: Difference between revisions

m
→‎{{header|Ruby}}: closing </lang> tag
m (→‎{{header|Ruby}}: correct a couple of typos)
m (→‎{{header|Ruby}}: closing </lang> tag)
Line 2,711:
puts "sequential_sort_with_swapping([7,6,5,9,8,4,3,1,2,0]): #{sequential_sort_with_swapping([7,6,5,9,8,4,3,1,2,0])}"
# prints: sequential_sort_with_swapping([7,6,5,9,8,4,3,1,2,0]): [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
</lang>
 
=={{header|Run BASIC}}==
Anonymous user