Z Reference Link
MiscC&C++C++ 参考手册 https://c-cpp.com/cpp PythonShellCudaTypeScriptCRustRust 程序设计语言 https://rustwiki.org/zh-CN/book/title-page.html Design Pattern设计模式 https://refactoringguru.cn/design-patterns CreationalBehavioralStructuralLuaCode StyleGoogle 开源项目风格指南 https://zh-google-styleguide.readthedocs.io/en/latest/index.html TypeScript
1 基础
变量1let guess: u32 = 1
5 Lua 面向对象
源码123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081local recursionsetmetatablerecursionsetmetatable = function(t, index) local mt = getmetatable(t) if not mt then mt = {} end if not mt.__index then mt.__index = index mt.__gc = function(self) self:Dtor() end setmetatable(t, mt) elseif mt.__index ~= index then recursionsetmetatable(mt, index)...
2 Lua 5.x精要总结
5.05.15.25.35.4