Files
bucky/examples/hello-world.bky
Jooris Hadeler 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

5 lines
67 B
Plaintext

extern puts(text: *char);
fn main() {
puts("Hello, World!");
}