Difference between revisions of "Test"

From Serious Sam's Bogus Detour
Jump to: navigation, search
Line 12: Line 12:
 
else:
 
else:
 
pass
 
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>
 
</syntaxhighlight>

Revision as of 16:18, 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>