zoisite 0.1.0

Zoisite is a programming language designed specifically for competitive programming.
Documentation
1
2
3
4
5
6
7
8
9
10
use rowan::TextRange;

use crate::syntax_kind::SyntaxKind;

#[derive(Debug)]
pub struct Token<'a> {
    pub kind: SyntaxKind,
    pub text: &'a str,
    pub range: TextRange,
}