summaryrefslogtreecommitdiff
path: root/test/construct3.lm
blob: a6977d96f4a620ab35cd026d144db7f5675e57d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

lex
	ignore /[ \t\n]+/
	token id /[a-z0-9]+/
	literal ',', '.', '*', '(', ')'
end

def bigger ['(' item* ')']

def item [id] | [bigger]

def lang [item*]

B: bigger = construct bigger "( b1 b2 )"
print( construct lang "a [B] c" '\n' )