摘要: #!/bin/sh input="./main.go" while read line do echo $line done < $input 阅读全文
posted @ 2021-02-07 23:31 kevin_coding 阅读(29) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "reflect" ) func main() { var student = []string{"kevin", "jane", "tom"} fmt.Println(student) fmt.Println(reflect.TypeOf(s 阅读全文
posted @ 2021-02-07 22:57 kevin_coding 阅读(466) 评论(0) 推荐(0)