PlutoLang / Pluto

A superset of Lua 5.4 with a focus on general-purpose programming.
https://pluto-lang.org/docs/Introduction
MIT License
339 stars 20 forks source link

Improve new operator #798

Closed Sainan closed 2 months ago

Sainan commented 2 months ago
pluto_class Test
    function __construct()

    end

    function __index(key)

    end
end

local _ = pluto_new Test()