Merge pull request #18 from danshorstein/hotfix/readme-update

Fix bug in example on README
This commit is contained in:
David Beazley
2018-11-21 04:18:05 -06:00
committed by GitHub

View File

@@ -158,7 +158,7 @@ expressions and store variables:
@_('NUMBER')
def expr(self, p):
return p.NUMBER
return int(p.NUMBER)
@_('NAME')
def expr(self, p):