blob: e41c98163e3379d850ecc6778e181eb77934acec (
plain) (
tree)
|
|
#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!"
};
|