Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
(Graphs)
(contact info updated)
 
(20 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.
 
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 [https://steamcommunity.com/id/Divaya Steam]or on the [https://ludeon.com/forums/index.php?action=profile;u=7108 Ludeon forums].
+
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].
  
{{Graph:Chart|width=600|height=100|xAxisTitle=X|yAxisTitle=Y
 
|type=rect|x=1,2,3,4,5,6,7,8|y=10,12,6,14,2,10,7,9}}
 
  
{{Graph:Chart|width=100|height=100|type=pie|legend=Legende
+
== Test Zone ==
|x=A,B,C,D,E,F,G,H,I|y1=100,200,150,300,100,100,150,50,200
+
{{key|S}}, {{key|}}
|y2=7,8,9,8,8,9,10,9,5|showValues=}}
 
  
{{Graph:Chart|width=400|height=100|xAxisTitle=X|yAxisTitle=Y
+
Taking a look at syntax highlighting always citing it has errors
|legend=Legend|type=stackedarea|x=1,2,3,4,5,6|y1=10,12,6,14,2,10
+
 
|y2=2,4,6,8,13,11|interpolate=monotone|colors=seagreen,orchid}}
+
‎<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
‎