Blame test/inclib.awk

Packit 575503
BEGIN {
Packit 575503
	print "Include library loaded."
Packit 575503
}
Packit 575503
Packit 575503
function sandwich(pfx,x,sfx) {
Packit 575503
	return (pfx x sfx)
Packit 575503
}