fastc 0.1.0

A safe C-like language that compiles to C11
Documentation
---
source: crates/fastc/src/lexer/mod.rs
expression: tokens
---
[
    LineComment(
        "// single line comment",
    ),
    Fn,
    Ident(
        "foo",
    ),
    LParen,
    RParen,
    Arrow,
    Void,
    LBrace,
    BlockComment(
        "/* multi\n       line\n       comment */",
    ),
    Return,
    Semi,
    RBrace,
    Eof,
]