Sorting algorithms/Bubble sort: Difference between revisions

Content added Content deleted
Line 1,740: Line 1,740:
</syntaxhighlight>
</syntaxhighlight>


==={{header|micro(A) BASIC}}===
==={{header|microA BASIC}}===
{{works with|microA }}
<syntaxhighlight lang="basic">
'bubble sort in micro(A) BASIC
'bubble sort in micro(A) BASIC
wcolor 0,0,0 : fcolor 150,180,240
wcolor 0,0,0 : fcolor 150,180,240
Line 1,785: Line 1,787:
if index < 1000 : goto do4 :endif
if index < 1000 : goto do4 :endif
'////////////////////////////////////////////////
'////////////////////////////////////////////////
</syntaxhighlight>


==={{header|Minimal BASIC}}===
==={{header|Minimal BASIC}}===