This repository has been archived on 2026-03-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bucky-old/README.md
2026-01-16 21:53:59 +01:00

29 lines
850 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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);
}
```