mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
9 lines
221 B
Awk
9 lines
221 B
Awk
BEGIN {
|
|
extension("./dl.so","dlload")
|
|
zaxxon("hi there", "this is", "a test", "of argument passing")
|
|
zaxxon(1)
|
|
zaxxon(1,2)
|
|
z = zaxxon(1,2,3,4)
|
|
z = zaxxon(1,zaxxon(zaxxon("foo")),3,4)
|
|
print z
|
|
}
|