mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
7 lines
71 B
ChaiScript
7 lines
71 B
ChaiScript
try {
|
|
throw(runtime_error("error"))
|
|
}
|
|
catch(e) {
|
|
print(e.what())
|
|
}
|