diff options
Diffstat (limited to 'test/prtoeval.awk')
-rw-r--r-- | test/prtoeval.awk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/prtoeval.awk b/test/prtoeval.awk new file mode 100644 index 00000000..77880d87 --- /dev/null +++ b/test/prtoeval.awk @@ -0,0 +1,4 @@ +function returns_a_str() { print "<in function>" ; return "'A STRING'" } +BEGIN { + print "partial line:", returns_a_str() +} |