我正在用 go 编写一个简单的 csv 文件解析器,但无法找出为什么我使用以下代码得到“undefined: csvfile”和“undefined: err”。从所有的例子来看,它似乎是正确的。
var source string
flag.StringVar(&source, "file", "test.csv", "the file to parse")
flag.Parse()
csvfile, err = os.Open(source)
潇湘沐
相关分类