Code Highlight Test

From OuroDev
Revision as of 10:35, 14 May 2019 by ChrisKitsch (talk | contribs) (Created page with "Test <source lang="javascript" line start="2" highlight="4-6"> // SyntaxHighlighter makes your code snippets beautiful without tiring your servers. // http://alexgorbatchev.c...")
(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