1package I1 2 3import "fmt" 4 5func example() { 6 temp := 5 7 temp := temp + temp 8 fmt.Print(temp + temp) 9}
View as plain text