What does this program print?
Go
package main
import "fmt"
const step = 2
func main() {
var total int
count := 3
total += count * step
fmt.Println(total)
}
package main
import "fmt"
const step = 2
func main() {
var total int
count := 3
total += count * step
fmt.Println(total)
}