blob: c543a648e4b8b190c82c1c2106d071522dc418b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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
fn main() {
if my_macro!("world!") != "Hello world!" {
panic!("Oh no! Wrong output!");
}
}
|