2024-06-13 16:33:07 +02:00

15 lines
267 B
Rust

fn intro() -> &'static str {
// TODO: fix me 👇
"I'm ready to build a calculator in Rust!"
}
#[cfg(test)]
mod tests {
use crate::intro;
#[test]
fn test_intro() {
assert_eq!(intro(), "I'm ready to build a calculator in Rust!");
}
}