mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 01:06:54 +08:00
14 lines
200 B
ChaiScript
14 lines
200 B
ChaiScript
load_module("stl_extra");
|
|
|
|
auto list = List();
|
|
|
|
list.resize(2);
|
|
assert_equal(list.size(), 2);
|
|
|
|
list.resize(6, "AAA");
|
|
assert_equal(list.back(), "AAA");
|
|
|
|
list.resize(0);
|
|
assert_equal(list.size(), 0);
|
|
|