6 lines
95 B
Lua
6 lines
95 B
Lua
while true do
|
|
local line = readln()
|
|
if not line then break end
|
|
print(pcall(load(line)))
|
|
end
|