1
0

70 lines
1.7 KiB
Plaintext
Raw Normal View History

2023-10-31 15:21:13 -04:00
================================================================================
Simple For Loop
2023-10-31 15:21:13 -04:00
================================================================================
2023-11-10 20:44:03 -05:00
for i in [1, 2, 3] {
2023-12-29 20:14:03 -05:00
output(i)
2023-11-10 20:44:03 -05:00
}
2023-10-31 15:21:13 -04:00
--------------------------------------------------------------------------------
(root
2023-11-10 20:44:03 -05:00
(statement
(for
(identifier)
(expression
(value
(list
(expression
2023-11-10 20:44:03 -05:00
(value
(integer)))
(expression
(value
(integer)))
(expression
(value
(integer))))))
(block
(statement
(expression
(function_call
(function_expression
2023-12-11 11:17:37 -05:00
(identifier
(built_in_function)))
2023-11-29 19:23:42 -05:00
(expression
(identifier)))))))))
2023-10-31 15:21:13 -04:00
================================================================================
2023-10-31 01:09:29 -04:00
Nested For Loop
2023-10-31 15:21:13 -04:00
================================================================================
2023-11-10 20:44:03 -05:00
for list in list_of_lists {
for item in list {
2023-12-29 20:14:03 -05:00
output(item)
2023-11-10 20:44:03 -05:00
}
}
2023-10-31 15:21:13 -04:00
--------------------------------------------------------------------------------
(root
2023-11-10 20:44:03 -05:00
(statement
(for
(identifier)
(expression
(identifier))
(block
(statement
(for
(identifier)
(expression
(identifier))
(block
(statement
(expression
(function_call
(function_expression
2023-12-11 11:17:37 -05:00
(identifier
(built_in_function)))
2023-11-29 19:23:42 -05:00
(expression
(identifier))))))))))))