remove print() from the tutorial, generating a little clumsiness around "import"

R=rsc,gri
DELTA=103  (36 added, 33 deleted, 34 changed)
OCL=26442
CL=26491
This commit is contained in:
Rob Pike 2009-03-18 14:09:16 -07:00
parent 08eeb2535d
commit bdbb3b455e
15 changed files with 70 additions and 75 deletions

View file

@ -4,6 +4,8 @@
package main
import fmt "fmt" // Package implementing formatted I/O.
func main() {
print("Hello, world; or Καλημέρα κόσμε; or こんにちは 世界\n");
fmt.Printf("Hello, world; or Καλημέρα κόσμε; or こんにちは 世界\n");
}