| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package main
- const errInvalidName = "invalid name"
- const errInvalidNumber = "invalid number"
- const errInvalidInteger = "invalid integer"
- const errInvalidBool = "invalid bool"
- const errUnmatchedBracket = "unmatched bracket"
- const errDivisionByZero = "division by zero"
- const errNegativeSquareRoot = "negative square root"
- const errNameReserved = "name reserved"
- const errNameNotFound = "name not found"
- const errUnexpectedEndOfInput = "unexpected end of input"
- const errValueExpected = "value expected"
- const errWordExpceted = "word expected"
- const errListExpected = "list expected"
- const errWordOrListExpected = "word or list expected"
- const errEmptyWordOrList = "empty word or list"
- const errIndexOutOfBound = "index out of bound"
- const errIllegalRange = "illegal range"
- const errIllegalOperandType = "illegal operand type"
- const errFileError = "file error"
|