mirror of
https://github.com/lune-org/lune.git
synced 2025-04-09 04:50:54 +01:00
9 lines
87 B
Text
9 lines
87 B
Text
local M = {}
|
|
|
|
M.state = 10
|
|
|
|
function M.set_state(n: number)
|
|
M.state = n
|
|
end
|
|
|
|
return M
|