Difference between revisions of "Test"

From Serious Sam's Bogus Detour
Jump to: navigation, search
(Created page with "Test page, please ignore {|width="100%" | {{Box|Column 1| Content in column 1 }} | {{Box|Column 2| Content in column 2 }} |}")
 
Line 1: Line 1:
 
Test page, please ignore
 
Test page, please ignore
  
{|width="100%"
+
----
|
+
 
{{Box|Column 1|
+
<syntaxhighlight lang="python" line='line'>
Content in column 1
+
def quickSort(arr):
}}
+
less = []
|
+
pivotList = []
{{Box|Column 2|
+
more = []
Content in column 2
+
if len(arr) <= 1:
}}
+
return arr
|}
+
else:
 +
pass
 +
</syntaxhighlight>
 +
 
 +
<syntaxhighlight lang="go" line='line'>
 +
package main
 +
 
 +
import "fmt"
 +
 
 +
func main() {
 +
x := 10
 +
y := 20
 +
z := x + y
 +
fmt.Printf("%d + %d = %d\n", x, y, z)
 +
}
 +
</syntaxhighlight>

Revision as of 16:15, 24 June 2017

Test page, please ignore


<syntaxhighlight lang="python" line='line'> def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass </syntaxhighlight>

<syntaxhighlight lang="go" line='line'> package main

import "fmt"

func main() { x := 10 y := 20 z := x + y fmt.Printf("%d + %d = %d\n", x, y, z) } </syntaxhighlight>