判断打印顺序

func b() {
    for i := 0; i < 4; i++ {
        defer fmt.Print(i)
    }
}

先进后出,后进先出