awk/testdir/t.fun3
Arnold D. Robbins d6c466c367 Extract testdir.
2019-06-23 03:13:57 -06:00

4 lines
97 B
Plaintext

function f(n) { while ((n /= 10) > 1) print n }
function g(n) { print "g", n }
{ f($1); g($1) }