Parse Tokens With Spans Using chumsky In Rust
```cargo
=
```
use *;
use Range;
chumsky
Output:
[/Users/alan/.cargo/target/55/19854259915251/_active_nvim_run:18:5] &result = Ok(
[
(
LetterA,
0..1,
),
(
LetterB,
1..2,
),
(
LetterB,
2..3,
),
(
LetterA,
3..4,
),
],
)
Notes
- This is a test I'm doing for the Neopolitan LSP
-
Individual Token are created with their spans in
letter1
andletter2
then assembled into a Vec inletters
-- end of line --