pub fn add_one(x: i32) -> i32
! DataScience ! datascience is a collection of utilities useful in data science. adds one to a i32 number.
datascience
let x = 3; assert_eq!(4, datascience::add_one(x));