Compare commits

..

2 Commits

Author SHA1 Message Date
9ac8a79151 feat: Add a README.md and logo.svg. 2026-03-11 23:42:43 +01:00
51bd07d313 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:42:39 +01:00

View File

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