User Tools

Site Tools


en:try

Try / Catch / EndTry (Statement)

Format

try
(tab)statement(s)
catch
(tab)statement(s)
end try

Description

Execute the statement(s) inside the try. If a runtime error occurs jump to the code in the catch.

Example

for t = -1 to 1
   try
      print "9/"+t + "= " + (9/t)
   catch
      print "division by zero"
   end try
next t

will display

9/-1= -9
division by zero
9/1= 9

See Also

History

1.0.0.2New To Version
en/try.txt · Last modified: 2020/02/28 10:46 (external edit)