rustlings/exercises/quiz4.rs
Kartheek, Gottipati c5a0b0316d solutions
2022-05-03 15:30:09 -04:00

31 lines
556 B
Rust

// quiz4.rs
// This quiz covers the sections:
// - Modules
// - Macros
// Write a macro that passes the quiz! No hints this time, you can do it!
mod macros {
#[macro_export]
macro_rules! my_macro {
($val:expr) => {
format!("Hello {}", $val)
};
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_my_macro_world() {
assert_eq!(my_macro!("world!"), "Hello world!");
}
#[test]
fn test_my_macro_goodbye() {
assert_eq!(my_macro!("goodbye!"), "Hello goodbye!");
}
}