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