mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
236 B
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