1use crate::interpreter::evaluator::Evaluator; 2 3pub fn std_to_lower(_: &mut Evaluator, string: String) -> String { 4 string.to_lowercase() 5}