Boolean values: Difference between revisions

Content deleted Content added
Added MiniScript implementation
Line 1,264:
boolFalse = 0
 
if boolTrue then
print "Its's true!"
end if
 
if !not boolFalse then
print "It's not true!"
end if</lang>