从 Goland 创建
概述
我们在完成 Golang 安装后,可以正式进入 golang 开发了,目前比较主流的两款编辑器是 Goland 和 VSCode,本文将介绍如何使用 Goland 创建一个 golang 项目。
Goland 下载请参考 Goland 官网。
温馨提示
当前文档演示的 Goland 版本为 GoLand 2022.1.4
,如果你的 Goland 版本不一致,可能会有所差异。
创建项目
打开 Goland,点击 New Project
,选择 Go
,填写项目名称,点击 Create
创建工程。
新建 main.go
在工程名称 helloworld
上右键,选择 New
,选择 Go File
,输入文件名称 main
,回车。
在 main.go
中输入以下代码:
package main
import "fmt"
func main() {
fmt.Println("hello world!")
}
运行程序
在 Goland 中,有多种方法可以启动程序:
在
main.go
文件上右键,选择Run go build main.go
,即可运行程序。在
main.go
文件内容面板中,找到第 5 行代码func main() {
左边的三角符号,点击运行即可。在
main.go
文件上右键,选择Open In
,然后选择Terminal
,即可打开终端,然后输入如下指令运行即可。$ go run main.go