mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 07:02:11 +08:00
13 lines
151 B
Go
Executable File
13 lines
151 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)
|
|
} |