Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
(Error hunting)
Line 4: Line 4:
  
 
{{key|S}}, {{key|↓}}
 
{{key|S}}, {{key|↓}}
 +
 +
 +
== Test Zone ==
 +
 +
Taking a look at syntax highlighting always citing it has errors
 +
 +
‎<syntaxhighlight lang="python" line>
 +
def quick_sort(arr):
 +
less = []
 +
pivot_list = []
 +
more = []
 +
if len(arr) <= 1:
 +
return arr
 +
else:
 +
pass
 +
‎</syntaxhighlight>

Revision as of 19:43, 2 May 2023

I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.

If you need to reach me, you can do so via The RimWorld Discord (@Zesty / CawsForConcern#0605) or on my User Talk Page.

S,


Test Zone

Taking a look at syntax highlighting always citing it has errors

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
‎