Making 1-bit pixel art with Rust

1-bit pixel art is an art form limited to 2 colors and small canvas sizes. These constraints breed creativity. Akshay, from our Language Team, reveals the al… Read more

Similar

Rust Error Handling Patterns

Error handling in Rust is very different if you’re coming from other languages. In languages like Java, JS, Python etc, you usually throw exceptions and return successful values. In Rust, you return something called a Result. (more…)

Read more »