1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "consts.h"
const char *ERR_MSG[] = {
"\"%s\" is not an valid identifier",
"Cannot apply the operation \"%s\"",
"Unbound variable: %s",
"Missing or extra expression in (%s)",
"Empty parameter list in (%s)",
"Wrong number of arguments to procedure (%s)",
"Illegal empty combination ()",
"Unexpected \")\"",
"Wrong type (expecting %s)",
"Internal Error !!! File a bug please!",
"Illegal character in escape sequence: #\\%s",
"Unknown character name: %s",
"Improper pair structure",
"Improper vector structure",
"Bad formal %s in expression",
"Queue overflowed: the expected expansion is too long!",
"%s stack overflowed!",
"Numeric overflow!",
"Value out of range",
"GC overflow!"
};
|