15 lines
186 B
Plaintext
15 lines
186 B
Plaintext
|
# BEGIN rule(s)
|
||
|
|
||
|
BEGIN {
|
||
|
1 the_func = "p"
|
||
|
1 print @the_func("Hello")
|
||
|
}
|
||
|
|
||
|
|
||
|
# Functions, listed alphabetically
|
||
|
|
||
|
1 function p(str)
|
||
|
{
|
||
|
1 print "! " str " !"
|
||
|
}
|