c64-livecoding/wip-duuqnd/user-side-compiler/example-5.c6l

25 lines
No EOL
238 B
Text

x = random()
if x == 1 then
placeholder()
end
if x != 1 then
placeholder()
end
if x > 1 then
placeholder()
end
if x >= 1 then
placeholder()
end
if x < 1 then
placeholder()
end
if x <= 1 then
placeholder()
end