Represents a single token in a parsed expression. Holds the string value of the token and its classified type.
Initializes a new instance of the token class
type(token) function token(character(:) value, integer type)
| [in] | value | |
| [in] | type |
Examples
Variables | |
| character(:), allocatable | value |
| Token value. | |
| integer(tokens_enum) | type |
| Token type, from the enum tokens_enum. | |