在 GoLang 中 将一个定义了变量,却不使用而报错的解决办法

Lenix at 
_在 GOLANG 中表示的是空标识符号..// empty.gopackage mainfunc main() {    var x = 100    _ = x}………