Sorting algorithms/Quicksort: Difference between revisions

m
→‎{{header|Fortran}}: added syntax highlighting
imported>MM
(→‎{{header|Python}}: use speaking variable names.)
m (→‎{{header|Fortran}}: added syntax highlighting)
Line 4,676:
=={{header|Fortran}}==
{{Works with|Fortran|90 and later}}
<syntaxhighlight lang="fortran">
recursive subroutine fsort(a)
use inserts, only:insertion_sort !Not included in this posting
Line 4,733 ⟶ 4,734:
return
end subroutine fsort
</syntaxhighlight>
</pre>
 
=={{header|FreeBASIC}}==
7,796

edits