Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
package main import ("fmt") func testcount(x int) int { if x == 11 { return 0 } fmt.Println(x) return testcount(x + 1) } func main(){ testcount(1) }
1 2 3 4 5 6 7 8 9 10