在sublime text 3和直接在命令行都试过了,编译运行Hello World都很慢,问题在哪呢?
![build.png](https://static.studygolang.com/190622/018bf488ae611a01cbb902ec9d2afee4.png)
![cmd.png](https://static.studygolang.com/190622/0394c2ea8969eae2e8a4edeadb4f99c7.png)
``` bash
lurenjia@lurenjia:~/桌面$ date ; go build hw.go ; date
2019年 06月 23日 星期日 10:36:09 CST
2019年 06月 23日 星期日 10:36:09 CST
lurenjia@lurenjia:~/桌面$ date ; ./hw ; date
2019年 06月 23日 星期日 10:36:22 CST
hello world
2019年 06月 23日 星期日 10:36:22 CST
lurenjia@lurenjia:~/桌面$ cat hw.go
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
```
``` bash
lurenjia@lurenjia:~/桌面$ date ; go run hw.go ; date
2019年 06月 23日 星期日 10:37:05 CST
hello world
2019年 06月 23日 星期日 10:37:05 CST
```
#1
更多评论