aboutsummaryrefslogtreecommitdiff
path: root/consts.cpp
blob: c7058b01ba97c240f13005f5250097da78a56eb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "consts.h"

const char *SYN_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 \")\""
};