mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
14 lines
123 B
Brainfuck
14 lines
123 B
Brainfuck
|
|
define f (x) {
|
||
|
|
|
||
|
|
if (x<=1) return(1)
|
||
|
|
return (f(x-1)*x)
|
||
|
|
}
|
||
|
|
|
||
|
|
"Here we go"
|
||
|
|
for (a=1; a<100; a++) b+=f(a)/a
|
||
|
|
"
|
||
|
|
"
|
||
|
|
"b=";b
|
||
|
|
quit
|
||
|
|
|