Jooris Hadeler 1107c7d93d feat: Add support for let and expression statements.
This commit implements parsing for `let` statements, anything that
is not a let statement will be assumed to be an expression statement.
2026-03-12 21:23:09 +01:00
2026-03-11 23:17:50 +01:00
2026-03-11 23:42:43 +01:00
2026-03-11 23:42:43 +01:00

Bucky Logo

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
The home of the bucky language compiler.
Readme 93 KiB
Languages
Rust 100%