mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
13 lines
236 B
Markdown
13 lines
236 B
Markdown
# META
|
|
~~~ini
|
|
description=Nested for loops
|
|
type=repl
|
|
~~~
|
|
# SOURCE
|
|
~~~roc
|
|
» 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
|