gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/nil1.go (about) 1 package main 2 3 func main() { 4 var a error = nil 5 6 if a == nil || a.Error() == "nil" { 7 println("a is nil") 8 } 9 } 10 11 // Output: 12 // a is nil