mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-29 05:36:55 +02:00
13 lines
123 B
Go
13 lines
123 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
for i := 0; i < 3; i++ {
|
|
defer fmt.Printf("%d ", i)
|
|
}
|
|
}
|
|
|
|
// Finish!
|
|
// 2 1 0
|