标签:Go语言 语法 循环 ack func class 数组 ring hello
var x string = "hello world"
var x [5]int //数组
var x [5]float64
i := 1
x := [5]float64{99, 44, 22, 11, 1}
x := [5]float64{
98,
93,
77,
82,
83,
}
x := [4]float64{
98,
93,
77,
82,
// 83,
}
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
for
/* */
//
标签:Go语言 语法 循环 ack func class 数组 ring hello
原文地址:https://www.cnblogs.com/leyang2019/p/11913251.html