summary refs log tree commit diff stats
path: root/rust/assembly-line/src/lib.rs
blob: de2998868d76e4cada04f62c8531ccfa4edd0bf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// This stub file contains items which aren't used yet; feel free to remove this module attribute
// to enable stricter warnings.
#![allow(unused)]

pub fn production_rate_per_hour(speed: u8) -> f64 {
    unimplemented!("calculate hourly production rate at speed: {}", speed)
}

pub fn working_items_per_minute(speed: u8) -> u32 {
    unimplemented!("calculate the amount of working items at speed: {}", speed)
}