opencct 0.1.0

Utilities for Call Center simulation and optimal staffing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn myfun(x: i32) -> i32 {
    x
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn add_two_and_two() {
        let result = myfun(4);
        assert_eq!(result, 4);
    }

}