1
0

62 lines
1.6 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-10-31 15:21:13 -04:00
for i in [1, 2, 3] output i
2023-10-31 15:21:13 -04:00
--------------------------------------------------------------------------------
(root
2023-10-31 09:31:10 -04:00
(block
(statement
(for
(identifier)
(expression
2023-10-31 09:31:10 -04:00
(value
(list
(expression
(value
(integer)))
(expression
(value
(integer)))
(expression
(value
(integer))))))
(block
(statement
(expression
2023-10-31 13:04:22 -04:00
(function_call
2023-10-31 15:21:13 -04:00
(built_in_function
(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-10-31 15:21:13 -04:00
for list in list_of_lists for item in list output item
2023-10-31 15:21:13 -04:00
--------------------------------------------------------------------------------
(root
2023-10-31 09:31:10 -04:00
(block
(statement
(for
(identifier)
(expression
(identifier))
(block
(statement
2023-10-31 09:31:10 -04:00
(for
(identifier)
(expression
(identifier))
(block
(statement
(expression
2023-10-31 13:04:22 -04:00
(function_call
2023-10-31 15:21:13 -04:00
(built_in_function
(expression
(identifier))))))))))))))