power_function/
lib.rs

1pub fn exponent_function(x:f64,y:f64){
2    println!("{}",x.powf(y));
3}