freebsd-dev/contrib/bc/Test/fact.b

13 lines
107 B
Brainfuck
Raw Normal View History

1998-04-29 21:53:01 +00:00
define f (x) {
if (x<=1) return(1)
return (f(x-1)*x)
}
2001-02-26 07:13:00 +00:00
for (a=1; a<600; a++) b=f(a)
1998-04-29 21:53:01 +00:00
"
"
"b=";b
quit