ErrorNoHalt
Example
An example of the use of this function
local num = 11
if ( num <= 10 and num >= 0 ) then
print( "The number is", num )
else
ErrorNoHalt( "Number out of range!\n" )
print("This line will be printed")
end
Output:
Number out of range!
This line will be printed