Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
m (format)
(contact info updated)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Rwbox
+
I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.
| name = downtime
 
| type = manual
 
| color = #FFBF00
 
| small = {{{small|no}}}
 
| image = [[File:AgeReversal.png|40px]]
 
| text = <h2>Downtime Notice</h2>The RimWorld Wiki will have its MediaWiki version updated soon. The expected downtime period is between Friday (December 9th) to Sunday (December 11th)<br/>You may experience some interruptions trying to edit or viewing pages during the migration.
 
| nocat = true
 
}}
 
  
I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.
+
The best place to reach me is with an @ message via [https://discordapp.com/invite/UTaMDWc The RimWorld Discord] (@cawsforconcern), or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
 +
 
 +
 
 +
== Test Zone ==
 +
{{key|S}}, {{key|↓}}
 +
 
 +
Taking a look at syntax highlighting always citing it has errors
  
If you need to reach me, you can do so via [https://discord.gg/YEsP9SQhhW The RimWorld Wiki Discord] (@Zesty / CawsForConcern#0605) or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
+
‎<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 22:43, 30 April 2024

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

The best place to reach me is with an @ message via The RimWorld Discord (@cawsforconcern), or on my User Talk Page.


Test Zone[edit]

S,

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
‎