2009-06-30 04:17:39 +00:00
|
|
|
#
|
|
|
|
# deep recursion must be detected if it goes too deep.
|
|
|
|
#
|
|
|
|
|
2009-06-28 06:42:53 +00:00
|
|
|
function f(x)
|
2009-06-27 20:50:54 +00:00
|
|
|
{
|
2009-06-28 06:42:53 +00:00
|
|
|
print x;
|
2009-06-27 20:50:54 +00:00
|
|
|
f("my hello");
|
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN { f(10); }
|