mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 22:53:43 +08:00
13 lines
95 B
Go
13 lines
95 B
Go
package main
|
|
|
|
func main() {
|
|
i := 0
|
|
HERE:
|
|
print(i)
|
|
i++
|
|
if i == 5 {
|
|
return
|
|
}
|
|
goto HERE
|
|
}
|