Junior — Senior
Determine the program output
livecode
Task condition
Specify which text will be output when executing the following Go program.
package main
// import "fmt"
func main() {
{
defer fmt.Println(1)
}
defer fmt.Println(2)
}
livecode
Task condition
Specify which text will be output when executing the following Go program.
package main
// import "fmt"
func main() {
{
defer fmt.Println(1)
}
defer fmt.Println(2)
}