Keyword: try
Represents the unsafe block of code to execute. Used in chain with the catch keyword.
glang
# try { ... } catch [name] { ... }
try {
# dangerous code
1 / 0
} catch _ {
# ...
}