mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:11:49 +08:00
9 lines
159 B
Go
9 lines
159 B
Go
package main
|
|
|
|
import "fmt" // Package implementing formatted I/O.
|
|
|
|
func main() {
|
|
fmt.Printf("Καλημέρα κόσμε; or こんにちは 世界\n")
|
|
}
|
|
|