1use crate::interpreter::evaluator::Evaluator; 2 3pub fn std_hypot(_: &mut Evaluator, x: f64, y: f64) -> f64 { 4 x.hypot(y) 5}