Compare commits

..

2 Commits

Author SHA1 Message Date
1f6f876f58 feat: Add a README.md and logo.svg. 2026-03-11 23:29:02 +01:00
a8a1b5b897 feat: Add token definitions and lexer logic.
This commit adds the `Token` and `TokenKind` definitions in `src/token.rs`,
in `src/lexer.rs` I've added the `Lexer` logic.
2026-03-11 23:25:46 +01:00

View File

@@ -1,5 +1,3 @@
extern puts(text: *char);
fn main() {
puts("Hello, World!");
}