pub fn relu(x: f32) -> f32
calculate the rectified linear unit to the given f32 number
rectified linear unit
let x:f32 = 0.5; let answer:f32 = relu(x); println!("relu({}) => {}",x,answer);