2019-01-23 19:48:01 +00: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!
|
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-01-23 19:48:01 +00:00
|
|
|
fn main() {
|
|
|
|
if my_macro!("world!") != "Hello world!" {
|
|
|
|
panic!("Oh no! Wrong output!");
|
|
|
|
}
|
|
|
|
}
|