User talk:Ken.Foreman

From Tayledras
Jump to: navigation, search

Sandbox

Don't forget to use SyntaxHighlight tags when adding code to the Wiki!

 1 <syntaxhighlight lang="Python" line='line'>
 2 def quickSort(arr):
 3 	less = []
 4 	pivotList = []
 5 	more = []
 6 	if len(arr) <= 1:
 7 		return arr
 8 	else:
 9 		pass
10 </syntaxhighliht> ## deliberate typo since Wiki is trying to parse this example