I am learning Google\'s new language Go. I am just trying stuff out and I noticed that if you declare a variable and do not do anything with it the go compiler (8g
Does this work?
cwd, error := os.Getwd(); if error == nil { fmt.Printf(cwd); }