-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathloops.txt
39 lines (36 loc) · 938 Bytes
/
loops.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
================================================================================
Loop 1
================================================================================
from table
loop (
filter n<4
select n = n+1
)
--------------------------------------------------------------------------------
(program
(pipeline
(from
(keyword_from)
(identifier))
(transforms
(loop
(keyword_loop)
(transforms
(filter
(keyword_filter)
(binary_expression
(field
(identifier))
(literal
(integer))))
(select
(keyword_select)
(term
(assignment
(field
(identifier))
(binary_expression
(field
(identifier))
(literal
(integer)))))))))))