Skip to content

Instantly share code, notes, and snippets.

@nticaric
Created July 25, 2020 19:48
Show Gist options
  • Save nticaric/653e8f4538bb6837287d9b4072d2ea7d to your computer and use it in GitHub Desktop.
Save nticaric/653e8f4538bb6837287d9b4072d2ea7d to your computer and use it in GitHub Desktop.
declared but not used (as r-values)
package main
import (
"fmt"
)
func main() {
counter := 0
if shouldStartWithOne() {
counter = 1
}
fmt.Printf("Whaaat?")
}
func shouldStartWithOne() bool {
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment