1use crate::interpreter::evaluator::Evaluator; 2 3pub fn std_frac_2_sqrt_pi(_: &mut Evaluator) -> f64 { 4 std::f64::consts::FRAC_2_SQRT_PI 5}