blob: bbb707004fff24a1d897af2c263773b608dc83eb [file] [log] [blame]
Russ Cox68209ed2008-09-17 14:08:52 -07001// $G $F.go && $L $F.$A && ./$A.out
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9func main() {
Rob Pike4f61fc92010-09-04 10:36:13 +100010 print(-(1<<63), "\n")
Russ Cox68209ed2008-09-17 14:08:52 -070011 print((1<<63)-1, "\n")
12}