Difference between revisions of "User:Kyllagdrgn"

248 bytes added ,  11:01, 4 October 2016
no edit summary
imported>Kyllagdrgn
imported>Kyllagdrgn
Line 1: Line 1:
'''Math Test'''
== Math Test ==
<math>
<math>
x + y =z
x + y =z
Line 5: Line 5:
</math>
</math>


== Papyrus using source tag ==
<source lang="papyrus">
<source lang="papyrus">
  Scriptname MyTriggerBoxScript extends ObjectReference
  Scriptname MyTriggerBoxScript extends ObjectReference
Line 19: Line 20:
</source>
</source>


== Papyrus using syntaxhighlight tag ==
<syntaxhighlight lang="papyrus">
<syntaxhighlight lang="papyrus">
  Scriptname MyTriggerBoxScript extends ObjectReference
  Scriptname MyTriggerBoxScript extends ObjectReference
Line 32: Line 34:
  EndEvent
  EndEvent
</syntaxhighlight >
</syntaxhighlight >
== Python using syntaxhighlight tag ==
<source lang="python">
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass
</source>
Anonymous user