fn prototype() {}

Rust-based prototyping platform

impl Prototype {
  fn build(&mut self) -> Result<(), Error> {
    self.compile()?;
    self.test()?;
    self.deploy()?;
    Ok(())
  }
}
Safe
Fast
Reliable