Bau Playground
Run ⇧ ⏎
fun factorial(x int) int if x <= 1 return 1 return x * factorial(x - 1) for i:= range(0 20) println(factorial(i))
Output:
about
Generated C Source Code:
Run
// Write your C code here and click Run #include
int main() { printf("Hello, World!\n"); return 0; }