Junior — Senior
What output will the program produce
livecode
Task condition
What will be the output in the console after executing the following Go program:
type Count int
func (c Count) Increment(){
c++
}
func main(){
count := Count{}
count.Increment()
fmt.Print(count)
}