8 lines
86 B
Go
8 lines
86 B
Go
package main
|
|
|
|
func main() {
|
|
for i := 0; i < 3; i++ {
|
|
defer println("loop", i)
|
|
}
|
|
}
|