Skip to content

Instantly share code, notes, and snippets.

@hi-manshu
Created June 26, 2018 20:33
Show Gist options
  • Save hi-manshu/625ddc0ebba763dca1ff41c6e408c107 to your computer and use it in GitHub Desktop.
Save hi-manshu/625ddc0ebba763dca1ff41c6e408c107 to your computer and use it in GitHub Desktop.
var variableNameGlobal bool // it global variable
var isOn, isOff = true, false // ignores the type of variables
func main() {
var variableName bool // local variable
variableName1 := false // without var and datatype
variableName2 = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment