14 lines
118 B
Go
14 lines
118 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func zero(x int) {
|
|
x = 0
|
|
}
|
|
|
|
func main() {
|
|
x := 5
|
|
zero(x)
|
|
fmt.Println(x)
|
|
}
|