36 lines
339 B
V
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',
|
|
]
|
|
|