From 8b232786dd78925b7c3c3a8be112d2e9a78d023f Mon Sep 17 00:00:00 2001 From: Jooris Hadeler Date: Fri, 16 Jan 2026 21:52:13 +0100 Subject: [PATCH] feat: Add `README.md` and `logo.svg`. --- README.md | 29 +++++++++++++++++++++++++++++ logo.svg | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 README.md create mode 100644 logo.svg diff --git a/README.md b/README.md new file mode 100644 index 0000000..dedf658 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +
+ Bucky Logo + + # Bucky + + **Bucky** is a compiled, statically typed programming language with a Rust-inspired syntax, designed for performance, safety, and expressiveness. + + The name *Bucky* is inspired by deer — fast, resilient, and precise — qualities that guide the language’s design philosophy. +
+ +## 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 + +```bucky +fn fib(n: u64): u64 { + if n < 2 { + return n; + } + + return fib(n - 1) + fib(n - 2); +} +``` \ No newline at end of file diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..3405165 --- /dev/null +++ b/logo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file