diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-25 15:12:12 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-25 15:12:12 +0000 |
| commit | 7d1944ab9d2307f2736afe8520436872db1c7617 (patch) | |
| tree | 7380a4f148f9ce0b70ed9f02cfa5e8561c783a7a /examples/scripting | |
| parent | 8b720543f538862796fec0ff6b7ea12cb140bf0f (diff) | |
'let' it be
Diffstat (limited to 'examples/scripting')
| -rw-r--r-- | examples/scripting/lua/lua.zc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/scripting/lua/lua.zc b/examples/scripting/lua/lua.zc index 74403bb..a8463fa 100644 --- a/examples/scripting/lua/lua.zc +++ b/examples/scripting/lua/lua.zc @@ -14,7 +14,7 @@ fn l_zenc_hello(L: lua_State*) -> int { } fn main() { - var L: lua_State* = luaL_newstate(); + let L: lua_State* = luaL_newstate(); if (!L) return !"Could not initialize LUA."; |
