Testing page: Difference between revisions
Jump to navigation
Jump to search
Testing syntax highlighting.
imported>Sjwhitak (Created page with "Edit anything you want on here to goof around or test things.") |
imported>Sjwhitak (Testing syntax highlighting.) |
||
Edit anything you want on here to goof around or test things.
<syntaxhighlight lang="python" line>
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
</syntaxhighlight>
|