
GO语言
hnhbdss
这个作者很懒,什么都没留下…
展开
-
GO入门
package main // 定义当前包名称 import "fmt" import "math" // 上述可以合并为 import ("fmt" "math") func main() { fmt.Println("hello ", math.Pi, "world"); //首字母大些的才会从包中导出,其他的符号都是不可见的。 } func原创 2012-07-07 18:48:08 · 664 阅读 · 0 评论 -
GO语言的并发
package main import ("fmt" "runtime" "time") func hello(s string) { for i := 0; i runtime.Gosched(); fmt.Println("here:", s); time.Sleep(原创 2012-07-08 11:32:58 · 1003 阅读 · 0 评论 -
GO 语言资料汇总
http://golang.org/pkg/time/原创 2012-07-08 11:57:13 · 675 阅读 · 0 评论