go语言rc文件编译 go语言编译可执行文件( 三 )


直接调用"go build helloworld.go"就生成了"helloworld.exe"可执行程序,运行一下这个程序看到了我们期望的hello,wolrd 。
【go语言rc文件编译 go语言编译可执行文件】E:\opensource\go\go\testgo build helloworld.go
E:\opensource\go\go\testhelloworld.exe
hello, world
E:\opensource\go\go\test
附一 helloworld.go
// cmpout
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test that we can do page 1 of the C book.
package main
func main() {
print("hello, world\n")
}
go语言rc文件编译的介绍就聊到这里吧,感谢你花时间阅读本站内容 , 更多关于go语言编译可执行文件、go语言rc文件编译的信息别忘了在本站进行查找喔 。

推荐阅读