misdreavus_test/
lib.rs

1//! small demo functions, let's make sure we're documenting correctly
2//!
3//! what on earth is going on
4
5/// sup
6pub fn sup() -> &'static str { "sup" }
7
8/// yo
9pub fn yo() -> &'static str { "yo" }
10
11/// hey
12pub fn hey() -> &'static str { "hey" }
13
14/// wassup
15pub fn wassup() -> &'static str { "wassup" }
16
17/// bye
18pub fn bye() -> &'static str { "bye" }
19
20/// nothing to see here<script>document.title = "lol";</script>
21pub struct SomeStruct;