fastc 0.1.0

A safe C-like language that compiles to C11
Documentation
---
source: crates/fastc/src/lexer/mod.rs
expression: tokens
---
[
    LParen,
    Ident(
        "a",
    ),
    And,
    Ident(
        "b",
    ),
    RParen,
    LParen,
    Ident(
        "c",
    ),
    Or,
    Ident(
        "d",
    ),
    RParen,
    LParen,
    Ident(
        "e",
    ),
    Caret,
    Ident(
        "f",
    ),
    RParen,
    Tilde,
    Ident(
        "g",
    ),
    LParen,
    Ident(
        "h",
    ),
    Shl,
    Ident(
        "i",
    ),
    RParen,
    LParen,
    Ident(
        "j",
    ),
    Shr,
    Ident(
        "k",
    ),
    RParen,
    Eof,
]