summaryrefslogtreecommitdiff
path: root/test/context1.lm
blob: e0caf7ef411331cdb8b25663428c4b554cc36688 (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
37
38
39
40
41
42
##### LM #####
context ctx
	i: int
	j: int
	k: int

	lex
		ignore /space+/
		literal '*', '(', ')'
		token id /[a-zA-Z_]+/ 
	end

	def foo [id]

	def item 
		[id]
	|	[foo]
	|	['(' item* ')']
		{
			i = 0
			j = i + 1
			k = j + 1
			print( k '\n' )
		}

	def start 
		[item*]
end # ctx

CTX: ctx = cons CTX: ctx[]

send

parse Input: ctx::start( CTX ) [ stdin ]
print( Input '\n' )


##### IN #####
a b c ( d e f )
##### EXP #####
2
a b c ( d e f )