go build
compile the package named by the import paths and thier dependencies
go build package/*.go
if build *.go, a virtual package command-line-arguments is created internally
$WORK/command-line-arguments/_obj/: stores the obj files继续阅读 »
正如IDEA官方说的,
IntelliJ IDEA IS The Most Intelligent Java IDE
习惯 Eclipse、NetBeans 和其他 IDE 或者文本编辑器的童鞋可能比较难适应 IDEA,但付出一点时间好好学学这个 IDE 是很有必要的,熟悉之后用这工具简直是一种享受。
下面提几点常用的设置和插件。
设置
1.安装主题。
http://www.ideacolorthemes.org/ 上很有多很好看的 IDEA 主题,可以选择自己喜欢的下载下来,然后 File -> Import Settings ,马上大变样,好看极了,保证你再也不想看 Eclipse 那种上个世纪的丑样了!!
2.显继续阅读 »
上代码:
{}
package main
import (
"fmt"
)
func xrange() chan int {
var ch chan int = make(chan int)
go func() {
for i := 2; ; i++ {
fmt.Printf("xrange about to send %d\n", i)
ch继续阅读 »