Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T172079
Change Details
Change Details
Old
New
Diff
``` try { _i = 5 / 0; // Engine throws error } catch { hint str _exception; // Prints "Zero divisor" }; ```
``` try { _i = 5 / 0; // Engine throws error } catch { hint _exception; // Prints "Zero divisor" }; ```
``` try {
_i = 5 / 0; // Engine throws error
} catch {
hint str
hint
_exception; // Prints "Zero divisor" }; ```
Continue