summaryrefslogtreecommitdiff
path: root/test/accum1.lm
blob: f4aa963aa98e04b8fbdfb4e2bc936046dd766eba (plain)
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
##### LM #####
lex
	ignore /space+/
	literal `* `( `)
	token id /[a-zA-Z_]+/
end

def item 
	[id]
|	[`( item* `)]

def start 
	[item*]

parse Input: start[ stdin ]

cons Output: accum<start> []

for Id: id in Input {
	send Output
		"( [^Id] )
}

S: start = Output()

print( S )
##### IN #####
a b c ( chocolate fudge ) d e
##### EXP #####
( a )
( b )
( c )
( chocolate )
( fudge )
( d )
( e )