fastc 0.1.0

A safe C-like language that compiles to C11
Documentation
---
source: crates/fastc/src/lexer/mod.rs
expression: tokens
---
[
    AtRepr,
    LParen,
    Ident(
        "C",
    ),
    RParen,
    Struct,
    Ident(
        "Point",
    ),
    LBrace,
    Ident(
        "x",
    ),
    Colon,
    I32,
    Comma,
    Ident(
        "y",
    ),
    Colon,
    I32,
    Comma,
    RBrace,
    Eof,
]