lex 0.2.0

This library aids in lexing languages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# lex
This library aids in lexing languages.

    [dependencies]
    lex = "0.2.0"

## Usage
If you are making a programming language you will likely want to use the out-of-the-box lexer provided by
`lex::code::create_lexer()`. This implementation will fit most modern programming languages.

You may also implement the `lex::Lexer` trait yourself or just the `lex::Next` trait and use the standard lexer
implementation. For both of these cases you will need to provide your own `lex::Kind` implementation.