diff python/c3/lexer.py @ 221:848c4b15fd0b

pointers
author Windel Bouwman
date Mon, 08 Jul 2013 22:21:44 +0200
parents 003c8a976fff
children 1c7364bd74c7
line wrap: on
line diff
--- a/python/c3/lexer.py	Sat Jul 06 21:32:20 2013 +0200
+++ b/python/c3/lexer.py	Mon Jul 08 22:21:44 2013 +0200
@@ -9,7 +9,7 @@
 keywords = ['and', 'or', 'not', 'true', 'false', \
    'else', 'if', 'while', 'return', \
    'function', 'var', 'type', 'const', \
-   'struct', \
+   'struct', 'cast', \
    'import', 'package' ]
 
 def tokenize(s):