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