fix some format and character issue.

This commit is contained in:
Zhanming Qi
2013-04-15 19:59:13 +08:00
parent 8e47a7e906
commit c3d3724ecd
3 changed files with 28 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
package main
import fm fmt // alias3
import fm "fmt" // alias3
func main() {
fm.Println(hello, world)
fm.Println("hello, world")
}

View File

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