blob: 894482ef09848d07370a40d76191f5cb99a28278 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "consts.h"
const char *SYN_ERR_MSG[] = {
"\"%s\" is not an valid identifier",
"Cannot apply the operation \"%s\"",
"An identifier is expected",
"Unbound variable: \"%s\""
};
|