home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
TEXT
/
UTILITY
/
AWK320.ZIP
/
FACT.AWK
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1990-06-04
|
197 b
|
12 lines
# calculate and print the factorial of the input
function factorial(n) {
if (n <= 1)
return 1
else
return n * factorial(n - 1)
}
{
print $1, factorial($1)
}