Sorting algorithms/Bubble sort: Difference between revisions

m
→‎Icon and Unicon: header simplification
m (→‎Icon and Unicon: header simplification)
Line 907:
END</lang>
 
=={{header|Icon}} and {{header|Unicon}}==
 
==={{header|Icon}}===
Icon/Unicon implementation of a bubble sort
<lang Icon>procedure main() #: demonstrate various ways to sort a list and string
Line 1,005 ⟶ 1,003:
return
end</lang>
 
==={{header|Unicon}}===
 
This Icon solution works in Unicon. A solution that uses Unicon extensions has not been provided.
 
=={{header|J}}==
Anonymous user