Difference between revisions of "User:Zesty"
Jump to navigation
Jump to search
(contact info updated) |
|||
(45 intermediate revisions by 4 users 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. | ||
− | + | 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 | |
− | + | <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]
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