mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

I made a light pass over the text. Switched the includes over to the new btest-include and adapted the other TEXT-EXECs a bit. Also includes more tweaking all over the Sphinx setup.
19 lines
336 B
Text
19 lines
336 B
Text
module Factor;
|
|
|
|
function factorial(n: count): count
|
|
{
|
|
if ( n == 0 )
|
|
return 1;
|
|
else
|
|
return ( n * factorial(n - 1) );
|
|
}
|
|
|
|
event bro_init()
|
|
{
|
|
local numbers: vector of count = vector(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
|
|
|
|
for ( n in numbers )
|
|
print fmt("%d", factorial(numbers[n]));
|
|
}
|
|
|
|
|