Arfur is a set of bindings and a framework that builds on top of the WPILib suite, enabling Rust-based robot programs in FRC.
```rust use arfur::prelude::*;
fn main() -> Result<()> { let robot: Robot = UninitializedRobot::default().initialize()?;
// Having a `Robot` type is proof that the HAL has been initialized. We can
// use to construct all kinds of handles!
Ok(())
} ```
For now, sift through the crate's examples and documentation. There's much more to come!