当前位置:网站首页>Go-3-第一个Go程序
Go-3-第一个Go程序
2022-07-05 10:23:00 【hahyyy】
第一个Go程序(在Linux系统下)
新建一个文件 ~/code/example.go
// 声明该文件所在包,如果是主程序就是main
// Go语言中使用包来组织代码
// 一般一个文件夹即一个包
// 包内可以暴露类型或方法供其他包使用
package main
// 导入库
// fmt是Go语言的一个标准库/包
// 用来处理标准输入输出
import "fmt"
// main 函数是整个程序的入口,main函数所在的包名也必须为 `main`
// 主包中必须包含一个main函数
func main() {
// 调用fmt包的Println方法,在屏幕输出信息
fmt.Println("Hello World!")
}
// 一行代表一个语句结束,多个语句写在同一行,则必须使用;来人为区分
// 单行注释://
// 多行注释:/* --- */
// 标识符:同python标识符规则
运行代码
- 直接运行
- 先编译再执行
Go语言配置
配置安装源
边栏推荐
- 爬虫(9) - Scrapy框架(1) | Scrapy 异步网络爬虫框架
- pytorch输出tensor张量时有省略号的解决方案(将tensor完整输出)
- Nine degrees 1480: maximum ascending subsequence sum (dynamic programming idea for the maximum value)
- Customize the left sliding button in the line in the applet, which is similar to the QQ and Wx message interface
- 请问postgresql cdc 怎么设置单独的增量模式呀,debezium.snapshot.mo
- 伪类元素--before和after
- 九度 1480:最大上升子序列和(动态规划思想求最值)
- Should the dependency given by the official website be Flink SQL connector MySQL CDC, with dependency added
- AtCoder Beginner Contest 258「ABCDEFG」
- Activity jump encapsulation
猜你喜欢
How can non-technical departments participate in Devops?
WorkManager学习一
How to plan the career of a programmer?
AtCoder Beginner Contest 258「ABCDEFG」
Apple 5g chip research and development failure? It's too early to get rid of Qualcomm
Pseudo class elements -- before and after
[论文阅读] KGAT: Knowledge Graph Attention Network for Recommendation
【Vite】1371- 手把手开发 Vite 插件
2022年流动式起重机司机考试题库及模拟考试
Window下线程与线程同步总结
随机推荐
微信小程序触底加载与下拉刷新的实现
How did automated specification inspection software develop?
Workmanager Learning one
Ad20 make logo
Excerpt from "sword comes" (VII)
Activity enter exit animation
[paper reading] ckan: collaborative knowledge aware autonomous network for adviser systems
报错:Module not found: Error: Can‘t resolve ‘XXX‘ in ‘XXXX‘
How does redis implement multiple zones?
"Everyday Mathematics" serial 58: February 27
Timed disappearance pop-up
Web Components
数组、、、
沟通的艺术III:看人之间 之倾听
官网给的这个依赖是不是应该为flink-sql-connector-mysql-cdc啊,加了依赖调
Events and bubbles in the applet of "wechat applet - Basics"
SQL Server 监控统计阻塞脚本信息
C function returns multiple value methods
QT implements JSON parsing
【js学习笔记五十四】BFC方式