diff --git a/_build/reference/1427-language-endtry.markdown b/_build/reference/1427-language-endtry.markdown index 07a34a86..76a84537 100644 --- a/_build/reference/1427-language-endtry.markdown +++ b/_build/reference/1427-language-endtry.markdown @@ -2,6 +2,19 @@ > END TRY -The END TRY statement marks the end of a TRY/CATCH block. For more information and examples please see TRY. +The END TRY statement marks the end of a TRY/CATCH block. For more information see TRY. +### Example +``` +try + ' DON'T use existing file for demo. + open "try demo.tmp" for input as #1 +catch err + print err + ' Some error handling could be implemented here + ' i.e: if(err = "...") then ... +end try + +print "This point is reach, even if opening the file was not possible" +```