feat: Add README.md and logo.svg.

This commit is contained in:
Jooris Hadeler
2026-01-16 21:52:13 +01:00
parent 62ea01c532
commit 53cc09aaca
2 changed files with 62 additions and 0 deletions

29
README.md Normal file
View File

@@ -0,0 +1,29 @@
<div align="center">
<img src="logo.svg" alt="Bucky Logo" width="200" height="200">
# 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 languages design philosophy.
</div>
## 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);
}
```