摘要: 1、hello world程序 package main import ( "fmt" // 用来格式化输出数据,比如字符串,整数,小数 ) func main() { fmt.Println("hello world") } 函数定义的规则: func 函数名 (参数列表) (返回值列表){ 函数 阅读全文
posted @ 2021-07-31 10:17 峰哥ge 阅读(121) 评论(0) 推荐(0) 编辑