8 lines
168 B
Lua
8 lines
168 B
Lua
local ok, runtime = pcall(require, "core.runtime")
|
|
if not ok then
|
|
printError("ATM10 Control konnte nicht starten: " .. tostring(runtime))
|
|
return
|
|
end
|
|
runtime.run()
|
|
|