RosettaCodeData/Task/Assertions/Pluto/assertions.pluto
2026-04-30 12:34:36 -04:00

8 lines
126 B
Text

local function check42(x)
assert(x == 42, "x must be 42")
end
local x = 42
check42(x) -- ok
x = 43
check42(x) -- error