2008-03-19 16:45:07 -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
|
|
|
|
|
2009-05-08 16:21:41 -06:00
|
|
|
import "os"
|
|
|
|
|
2008-06-27 15:15:06 -06:00
|
|
|
func main() {
|
2009-01-16 15:58:14 -07:00
|
|
|
s :=
|
2008-06-08 18:19:11 -06:00
|
|
|
0 +
|
|
|
|
123 +
|
|
|
|
0123 +
|
|
|
|
0000 +
|
|
|
|
0x0 +
|
|
|
|
0x123 +
|
|
|
|
0X0 +
|
|
|
|
0X123;
|
|
|
|
if s != 788 {
|
2008-08-11 23:07:49 -06:00
|
|
|
print("s is ", s, "; should be 788\n");
|
2009-05-08 16:21:41 -06:00
|
|
|
os.Exit(1);
|
2008-06-08 18:19:11 -06:00
|
|
|
}
|
2008-03-19 16:45:07 -06:00
|
|
|
}
|