mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
11 lines
126 B
ChaiScript
11 lines
126 B
ChaiScript
auto p = parse("5 + 4");
|
|
|
|
try {
|
|
assert_equal(eval(p), 9)
|
|
} catch (e) {
|
|
print(e.pretty_print());
|
|
assert_true(false);
|
|
}
|
|
|
|
|