vua/constants.v
2025-06-19 22:38:38 -05:00

36 lines
339 B
V

module constants
pub const keywords = [
'and',
'assert',
'begin',
'break',
'continue',
'class',
'do',
'else',
'elseif',
'end',
'foreach',
'forever',
'function',
'if',
'import',
'in',
'local',
'nil',
'not',
'module',
'match',
'or',
'repeat',
'return',
'then',
'true',
'pragma',
'record',
'until',
'while',
]