摘要:
保留的关键字段 1.Question1 1 package main 2 3 4 import ( 5 "fmt" 6 ) 7 8 func list(n int) { 9 10 for i := 0; i <= n; i++ { 11 fmt.Printf("%d+%d=%d\n", i, n - 阅读全文
摘要:
一.规范目录结构 D:\project\src\go_dev\day1\example1 二.设置GOPAH环境变量 三.hello world 1.hello world go build go_dev\day1\example1 生成example1.exe 执行example1.exe 2.g 阅读全文