rustlings/exercises/quiz4.rs
JeremTer c6bb467470 😎
2021-05-08 15:43:32 +02:00

28 lines
494 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!
macro_rules! my_macro {
($a: expr) => { format!("{}{}", "Hello ", $a) };
}
#[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!");
}
}