mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 17:26:55 +08:00
9 lines
103 B
ChaiScript
9 lines
103 B
ChaiScript
auto x = [1, 2, 3]
|
|
assert_equal(3, x[2])
|
|
|
|
|
|
for (auto i = x.size() - 1; i >= 0; --i)
|
|
{
|
|
print(x[i]);
|
|
}
|