blob: e50f1b086118d61cf5cd853be58767faa836475b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// test4.rs
// This test covers the sections:
// - Modules
// - Macros
// Write a macro that passes the test! No hints this time, you can do it!
fn main() {
if my_macro!("world!") != "Hello world!" {
panic!("Oh no! Wrong output!");
}
}
|