~vcs-imports/gawk/master

1
2
3
4
5
6
7
8
9
10
11
12
13
14
	# BEGIN block(s)

	BEGIN {
     1  	the_func = "p"
     1  	print @the_func("Hello")
	}


	# Functions, listed alphabetically

     1  function p(str)
	{
     1  	print "! " str " !"
	}