1 Star 0 Fork 1

aliao/golang-tutorial

forked from Alex/golang-tutorial 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.go 370 Bytes
一键复制 编辑 原始数据 按行查看 历史
Alex 提交于 2022-10-25 00:41 . 剔除不必要的文件
package main // 程序的包名
/**
两种方式都可以导入
import "fmt"
import "time"
*/
import (
"fmt"
"time"
)
// main 函数
func main() { // 函数的 `{` 一定是需要和函数名在同一行的,否则编译会错误
// golang 中的表达式,加 `;` 和不加分号都可以,建议不加
fmt.Println("hello Go!")
time.Sleep(1 * time.Second)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aliaodc/golang-tutorial.git
git@gitee.com:aliaodc/golang-tutorial.git
aliaodc
golang-tutorial
golang-tutorial
main

搜索帮助