Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created May 20, 2011 04:23
Show Gist options
  • Save fsouza/982352 to your computer and use it in GitHub Desktop.
Save fsouza/982352 to your computer and use it in GitHub Desktop.
package variables
import (
"fmt"
)
func main() {
number := 200
fmt.Println(number)
number = 50
fmt.Println(number)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment