JAVA
·
发表于 5年以前
·
阅读量:903
// 我们的第一个程序将打印传说中的 "`hello world`"
// 消息,右边是完整的程序代码。
package main
import "fmt"
func main() {
fmt.Println("hello world")
}