4e2df32e3607cd4540c476e9e8facecd6688af96
This commit adds simple primitive type parsing, it also adds a new type of expression called the cast expression.
Bucky
Bucky is a compiled, statically typed programming language with a Rust-inspired syntax, designed for performance, safety, and expressiveness.
Features
- Compiled: Produces native binaries for high performance
- Statically Typed: Strong type checking at compile time
- Rust-Inspired Syntax: Familiar, expressive, and modern
- Explicit and Predictable: Emphasizes clarity and correctness
- Safety-Oriented Design: Encourages writing robust code by default
Examples
fn fib(n: u64): u64 {
if n < 2 {
return n;
}
return fib(n - 1) + fib(n - 2);
}
Description
Languages
Rust
100%