Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
m (Changed protection level for "User:Zesty": protection no longer required ([Edit=Allow only autoconfirmed users] (expires 20:17, 1 February 2023 (UTC)) [Move=Allow only autoconfirmed users] (expires 20:17, 1 February 2023 (UTC))))
(testing something odd)
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
If you need to reach me, you can do so via [https://discordapp.com/invite/UTaMDWc The RimWorld Discord] (@Zesty / CawsForConcern#0605) or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
 
If you need to reach me, you can do so via [https://discordapp.com/invite/UTaMDWc The RimWorld Discord] (@Zesty / CawsForConcern#0605) or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
  
Test edit, please ignore.
+
{{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>

Latest revision as of 03:44, 3 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[edit]

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
‎