lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Consider these currently invalid programs: (they are not equivalent. that's intended.)

-- 1.lua
function foo(x, y)
    if x then
        goto bye
    end
    return y
    ::bye::
end

-- 2.lua
 function foo(y)
;; function bar(x)
;;;; if x then
;;;;;; print(y)
;;;; end
;;;; return x, y
;; end
;; return bar
 end

I wish the worked.