rustlings/exercises/test4.rs

15 lines
272 B
Rust
Raw Normal View History

2019-01-23 13:48:01 -06:00
// test4.rs
// This test covers the sections:
// - Modules
// - Macros
// Write a macro that passes the test! No hints this time, you can do it!
// I AM NOT DONE
2019-01-23 13:48:01 -06:00
fn main() {
if my_macro!("world!") != "Hello world!" {
panic!("Oh no! Wrong output!");
}
}