View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

Home Keywords

Keyword try

Description

Declares a try-block statement to handle potentially unsafe code.

Example

int dividend = 10;
int divisor = 0;

try;
    int quotient = dividend / divisor;
catch;
    println "Exception occurred when calculating quotient.";
end;