mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 01:06:54 +08:00
10 lines
83 B
ChaiScript
10 lines
83 B
ChaiScript
auto x = 1
|
|
try {
|
|
throw(x)
|
|
x = 2
|
|
}
|
|
catch(e) {
|
|
x = e + 3
|
|
}
|
|
assert_equal(4, x);
|