HN user

hanjos

3 karma

[ my public key: https://keybase.io/hanjos; my proof: https://keybase.io/hanjos/sigs/uCYmx30QCsHDYhE0IPpCfGWrZuen4Gp_Ez7Ay_dCbLY ]

Posts0
Comments1
View on HN
No posts found.

Nice work!

One nitpick: local function declarations, like

    local function g(x) return g(x) end
are actually the same as writing
    local g;
    g = function (x) return g(x) end
. Without that first local g; statement, local functions wouldn't be able to call themselves recursively.