commit | 4f61fc96b2788be7cbfc6f7a72acef3d3feeeb6c | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Sat Sep 04 10:36:13 2010 +1000 |
committer | Rob Pike <r@golang.org> | Sat Sep 04 10:36:13 2010 +1000 |
tree | 094ba2238e5596358b6ae4db5789c7d1fee4ecb7 | |
parent | cd8f4cd2068964bfa12e10cd094d41ddd725af4f [diff] [blame] |
test: remove semiocolons. The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev https://golang.org/cl/2157041
diff --git a/test/printbig.go b/test/printbig.go index 5ec95b9..bbb70700 100644 --- a/test/printbig.go +++ b/test/printbig.go
@@ -7,6 +7,6 @@ package main func main() { - print(-(1<<63), "\n"); + print(-(1<<63), "\n") print((1<<63)-1, "\n") }