qse/regress/awk/lang-002.awk

12 lines
122 B
Awk

#
# deep recursion must be detected if it goes too deep.
#
function f(x)
{
print x;
f("my hello");
}
BEGIN { f(10); }