summaryrefslogtreecommitdiff
path: root/grammar/go/parsego.lm
blob: 659fcb0e3e5c79002530deabf35548c423264231 (plain)
1
2
3
4
5
6
7
8
9
10
11
include 'go.lm'

parse P: program [stdin]

if !P {
	send stderr "parse error: [error]
	exit(1)
}
else {
	print [P]
}