User talk:Tayledras

From Tayledras
Jump to: navigation, search
Hi there! I'm Ken.

Hello World

While you might say that all of tayledras.com is my sandbox for whatever it is I'm working on or thinking about, this personal page is even more of an experiment.

Coding Notes

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

 1 <syntaxhighlight lang="Python" line='line' highlight="1,5-7">
 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


MediaWiki Documentation and Notes