mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
4 lines
86 B
ChaiScript
4 lines
86 B
ChaiScript
auto v = {1,2,3};
|
|
auto r = range(v);
|
|
for_each(r, [](x) { assert_equal(true, x>0); } )
|