Skip to content

Instantly share code, notes, and snippets.

@hiepndd
Created May 25, 2019 10:31
Show Gist options
  • Save hiepndd/66c542c7f9ca388aadf546bd60684bc9 to your computer and use it in GitHub Desktop.
Save hiepndd/66c542c7f9ca388aadf546bd60684bc9 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func double(x int) {
x += x
}
func main() {
var a = 3
double(a)
fmt.Println(a) //3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment