mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 08:46:53 +08:00
6 lines
114 B
ChaiScript
6 lines
114 B
ChaiScript
auto z = zip([1, 2, 3], [4, 5, 6])
|
|
|
|
assert_equal([1,4], z[0])
|
|
assert_equal([2,5], z[1])
|
|
assert_equal([3,6], z[2])
|