fastc 0.1.0

A safe C-like language that compiles to C11
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
source: crates/fastc/src/lexer/mod.rs
expression: tokens
---
[
    Let,
    Ident(
        "x",
    ),
    Colon,
    I32,
    Eq,
    IntLit(
        42,
    ),
    Semi,
    Eof,
]