2008-06-06 16:53:14 -06:00
|
|
|
// $G $F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2008-06-27 15:15:06 -06:00
|
|
|
func main() {
|
2008-06-16 12:36:23 -06:00
|
|
|
count := 7;
|
|
|
|
if one := 1; {
|
2009-01-16 15:58:14 -07:00
|
|
|
count = count + one
|
2008-06-06 16:53:14 -06:00
|
|
|
}
|
2008-06-16 12:36:23 -06:00
|
|
|
if count != 8 {
|
2008-08-11 23:07:49 -06:00
|
|
|
print(count, " should be 8\n");
|
2009-01-16 15:58:14 -07:00
|
|
|
sys.Exit(1)
|
2008-06-16 12:36:23 -06:00
|
|
|
}
|
2008-06-06 16:53:14 -06:00
|
|
|
}
|