Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGodeferSingle-choice MCQ

In what order do these deferred calls execute?

package main import "fmt" func main() { for i := 0; i < 3; i++ { defer fmt.Print(i) } }