mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 03:06:41 +08:00
16 lines
147 B
Go
Executable File
16 lines
147 B
Go
Executable File
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
printrec(1)
|
|
}
|
|
|
|
func printrec(i int) {
|
|
if i > 10 {
|
|
return
|
|
}
|
|
printrec(i + 1)
|
|
fmt.Printf("%d ", i)
|
|
}
|