mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 03:34:15 +08:00
12 lines
114 B
Go
12 lines
114 B
Go
package main
|
|
|
|
func main() {
|
|
i:=0
|
|
HERE:
|
|
print(i)
|
|
i++
|
|
if i==5 {
|
|
return
|
|
}
|
|
goto HERE
|
|
} |