type
Post
status
Published
date
Dec 13, 2022
slug
summary
tags
Golang
category
笔记
icon
password
1.hello.go
package main //程序的包名字 // 两种导包形式 // import "fmt" import ( "fmt" ) // main函数 func main() { // 可以加; 也可以不加 // fmt.Println("hello Go!"); fmt.Println("hello Go!") }
- Author:Brust
- URL:https://brust.me/article/1379dd7c-d39c-4bcd-944c-1dfc306ab946
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!