13 lines
267 B
Plaintext
13 lines
267 B
Plaintext
|
fn print(message: String);
|
||
|
|
||
|
/// First doc comment
|
||
|
// Some more text
|
||
|
nasp trinitrix {
|
||
|
/// Second doc comment
|
||
|
fn hi(name: String) -> String;
|
||
|
}
|
||
|
|
||
|
|
||
|
// That's a flat out lie, but it results in a rather nice syntax highlight compared to nothing:
|
||
|
// vim: syntax=rust
|