Skip to content

Instantly share code, notes, and snippets.

@c1982
Created October 28, 2019 08:03
Show Gist options
  • Save c1982/91f592533c044128da22f4272ee3136c to your computer and use it in GitHub Desktop.
Save c1982/91f592533c044128da22f4272ee3136c to your computer and use it in GitHub Desktop.
no-global-var
package main
var levels = []string{"LVL1","LVL2","LVL3"}
func main(){
fmt.Println(levels)
}
package main
func levels() []string{
return []string{"LVL1","LVL2","LVL3"}
}
func main(){
fmt.Println(levels())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment