mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
24 lines
300 B
Text
24 lines
300 B
Text
#
|
|
# @TEST-EXEC: bro %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event bro_init()
|
|
{
|
|
local a = rand(1000);
|
|
local b = rand(1000);
|
|
local c = rand(1000);
|
|
|
|
print a;
|
|
print b;
|
|
print c;
|
|
|
|
srand(575);
|
|
|
|
local d = rand(1000);
|
|
local e = rand(1000);
|
|
local f = rand(1000);
|
|
|
|
print d;
|
|
print e;
|
|
print f;
|
|
}
|