Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 610 Bytes

【Golang 系列教程】第5节 第一个 Go 程序.md

File metadata and controls

30 lines (18 loc) · 610 Bytes

本节我们来学习写一个最简单的 Go 程序: 打印 Hello Go.

第一个Go程序, 只要跟着做, 留下个印象就可以.

Goland 创建一个 hello_go.go 文件(后缀为 .go ). 文件内容是

package main

import "fmt"

func main() {
	fmt.Println("Hello Go")
}

Goland 中使用快捷键 Ctrl + Shift + F10 运行程序, 结果如下:

image

完美! 现在您已经学会怎样运行了一个Go程序了.

李培冠博客

欢迎访问我的个人网站:

李培冠博客:lpgit.com