25 lines
No EOL
238 B
Text
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 |