mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
14 lines
173 B
Go
14 lines
173 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
defer fmt.Printf("%d ", 0)
|
|
defer fmt.Printf("%d ", 1)
|
|
defer fmt.Printf("%d ", 2)
|
|
fmt.Println("Finish!")
|
|
}
|
|
|
|
// Finish!
|
|
// 2 1 0
|