roc/test/snapshots/repl/for_loop_nested.md
2025-10-24 19:18:45 -04:00

236 B

META

description=Nested for loops
type=repl

SOURCE

» product = { var result_ = 0; for i in [1, 2, 3] { for j in [10, 20] { result_ = result_ + (i * j) } }; result_ }

OUTPUT

assigned product

PROBLEMS

NIL