>>312 >>314
つまりこういうこと。

> a = function() return 0 end
> b = function () a() end --return付け忘れた
> b()
> print(a())
0
> print(b())


あれれ・・