ubuntu-buildroot/output/build/host-gawk-5.2.0/test/profile3.awk

10 lines
94 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
BEGIN {
the_func = "p"
print @the_func("Hello")
}
function p(str)
{
print "! " str " !"
}