The George Programming Language

Keyword: try

Represents the unsafe block of code to execute. Used in chain with the catch keyword.

try {
    # dangerous code
    1 / 0
} catch _ {
    # ...
}