Created
July 25, 2020 19:48
-
-
Save nticaric/653e8f4538bb6837287d9b4072d2ea7d to your computer and use it in GitHub Desktop.
declared but not used (as r-values)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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