go/test/if.go

94 lines
1.4 KiB
Go
Raw Normal View History

// run
2008-06-06 20:28:03 +00:00
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test if statements in various forms.
2008-06-06 20:28:03 +00:00
package main
func assertequal(is, shouldbe int, msg string) {
if is != shouldbe {
print("assertion fail", msg, "\n")
panic(1)
2008-06-06 20:28:03 +00:00
}
}
func main() {
i5 := 5
i7 := 7
2008-06-06 20:28:03 +00:00
var count int
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if true {
count = count + 1
2008-06-06 20:28:03 +00:00
}
assertequal(count, 1, "if true")
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if false {
count = count + 1
2008-06-06 20:28:03 +00:00
}
assertequal(count, 0, "if false")
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if one := 1; true {
count = count + one
2008-06-06 20:28:03 +00:00
}
assertequal(count, 1, "if true one")
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if one := 1; false {
count = count + 1
_ = one
2008-06-06 20:28:03 +00:00
}
assertequal(count, 0, "if false one")
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if i5 < i7 {
count = count + 1
2008-06-06 20:28:03 +00:00
}
assertequal(count, 1, "if cond")
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if true {
count = count + 1
} else {
count = count - 1
}
assertequal(count, 1, "if else true")
2008-06-06 20:28:03 +00:00
count = 0
2008-06-06 20:28:03 +00:00
if false {
count = count + 1
} else {
count = count - 1
}
assertequal(count, -1, "if else false")
2008-06-06 20:28:03 +00:00
count = 0
if t := 1; false {
count = count + 1
_ = t
t := 7
_ = t
} else {
count = count - t
}
assertequal(count, -1, "if else false var")
2008-06-06 20:28:03 +00:00
count = 0
t := 1
2008-06-06 20:28:03 +00:00
if false {
count = count + 1
t := 7
_ = t
} else {
count = count - t
}
_ = t
assertequal(count, -1, "if else false var outside")
2008-06-06 20:28:03 +00:00
}