lunar_wave/test_vectors/is_93.lua

12 lines
140 B
Lua
Raw Normal View History

2023-09-24 21:57:12 +00:00
local function unused_fn ()
print "unused"
end
if arg [1] == "93" then
print "it's 93"
2023-09-24 21:57:12 +00:00
return 0
else
print "it's not 93"
2023-09-24 21:57:12 +00:00
return 1
end