home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
euphoria
/
keywords.e
< prev
next >
Wrap
Text File
|
1993-12-15
|
959b
|
24 lines
-- Euphoria keywords and builtins
-- N.B. the order of the keywords and builtins below
-- corresponds to the equivalent single-byte scanner tokens
-- emitted by the shrouder. Do not reorder them.
global constant keywords = {
"if", "end", "then", "procedure", "else", "for", "return",
"do", "elsif", "while", "type", "constant", "to", "and", "or",
"exit", "function", "global", "by", "not", "include",
"with", "without", "profile"}
global constant builtins = {
"length", "puts", "integer", "sequence", "position", "object",
"append", "prepend", "print", "printf",
"clear_screen", "floor", "getc", "gets", "get_key",
"rand", "repeat", "atom", "compare", "find", "match",
"time", "command_line", "open", "close", "trace", "getenv",
"sqrt", "sin", "cos", "tan", "log", "system", "date", "remainder",
"power", "machine_func", "machine_proc", "abort", "peek", "poke",
"call"}