1use crate::WolframValue; 2 3/// Constructs a [DateObject](https://reference.wolfram.com/language/ref/DateObject.html) from a string. 4pub fn date_object(input: &str) -> WolframValue { 5 WolframValue::function("DateObject", vec![input]) 6}