summaryrefslogtreecommitdiff
path: root/test/maketree1.lm
blob: 76aa15336b995e84d9b27022a8b22e608b7cf044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
lex
	token a /'a'/
	token b /'b'/
	token c /'c'/
end

def A
	[a b c]

print( make_tree( typeid<A> cons a "a" cons b "b" cons c "c" ) '\n' )
##### EXP #####
abc