lua stuff

This commit is contained in:
Imbus 2025-08-20 09:49:14 +02:00
parent 88e523ca73
commit 03064b235c
3 changed files with 47 additions and 2 deletions

11
lua_embed/bindings.lua Normal file
View file

@ -0,0 +1,11 @@
---@meta
--- Prints a string.
---@param str string The string to print.
function myprint(str) end
--- Add two integers
---@param a number The first integer
---@param b number The second integer
---@return number Result (a + b)
function c_add(a, b) end