10 lines
130 B
ChaiScript
10 lines
130 B
ChaiScript
auto total = 0
|
|
|
|
for (auto i = 0; i < 10; ++i) {
|
|
for (auto j = 0; j < 10; ++j) {
|
|
total += 1
|
|
}
|
|
}
|
|
|
|
assert_equal(100, total);
|