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/helloworld.go b/test/helloworld.go index 7234be3..e55a74b 100644 --- a/test/helloworld.go +++ b/test/helloworld.go
@@ -7,5 +7,5 @@ package main func main() { - print("hello, world\n"); + print("hello, world\n") }