This website requires JavaScript.
Explore
Help
Sign In
mirror
/
freebsd
Watch
1
Star
0
Fork
0
You've already forked freebsd
mirror of
https://git.FreeBSD.org/src.git
synced
2025-01-17 15:27:36 +00:00
Code
Issues
Releases
Activity
9b119ea634
freebsd
/
contrib
/
bc
/
Test
/
fact.b
13 lines
107 B
Brainfuck
Raw
Normal View
History
Unescape
Escape
Import GNU bc 1.04 PR: 4183
1998-04-29 21:53:01 +00:00
define f (x) {
if (x
<
=1) return(1)
return (f(x
-
1)*x)
}
Initial import of bc 1.0.6
2001-02-26 07:13:00 +00:00
for (a=1; a
<
600; a
++
) b=f(a)
Import GNU bc 1.04 PR: 4183
1998-04-29 21:53:01 +00:00
"
"
"b=";b
quit
Reference in New Issue
Copy Permalink