mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
12 lines
218 B
Text
12 lines
218 B
Text
# @TEST-EXEC: bro -b %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
type MyRec: record {
|
|
min: count &optional;
|
|
max: count;
|
|
};
|
|
|
|
local myrec: MyRec = MyRec($max=2);
|
|
print myrec;
|
|
myrec = MyRec($min=7, $max=42);
|
|
print myrec;
|