Junior — Senior
What result will the program output in example №76
livecode
Task condition
Determine which set of characters will be printed to the console after executing the following program:
package main
import "fmt"
func main() {
for i :=0; i < 5; i++{
fmt.Printf("%d",i)
switch i {
default:
case 2:
break
}
}
}