10 lines
94 B
Awk
10 lines
94 B
Awk
|
BEGIN {
|
||
|
the_func = "p"
|
||
|
print @the_func("Hello")
|
||
|
}
|
||
|
|
||
|
function p(str)
|
||
|
{
|
||
|
print "! " str " !"
|
||
|
}
|