Skip to content

Instantly share code, notes, and snippets.

@nticaric
Created July 25, 2020 19:47
Show Gist options
  • Save nticaric/99937096fa13bd78da7c67eb70c37c1b to your computer and use it in GitHub Desktop.
Save nticaric/99937096fa13bd78da7c67eb70c37c1b 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