SamplePage

From FPArma Wiki
Revision as of 17:55, 12 July 2017 by Comfy (talk | contribs) (Created page with " == Example of Syntax Highlighting == <syntaxhighlight lang="python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr e...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Example of Syntax Highlighting

def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass