Code Highlight Test

From OuroDev
Revision as of 11:02, 6 February 2020 by Chet (talk | contribs) (2 revisions imported: Importing Portal Corps Wiki pages and history - Feb 6, 2020)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Test

// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
// http://alexgorbatchev.com
var setArray = function(elems) {
    this.length = 0;
    push.apply(this, elems);
    return this;
}
def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass