package main import "fmt" type Vertex struct { X int Y int } func main() { V := Vertex{X: 1, Y: 2} fmt.Println(V) }
と書いたところVertex struct {の下に黄色い波線が出てきて、エラーメッセージが出て困ってます。
エラーメッセージ→exported type Vertex should have comment or be unexported
デバックコンソール自体は{1 2}と出てます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/12 13:06