1 2 3 4 5 6 7 8 9 10
use roxygen::*; #[roxygen] /// no function parameters documented /// and some more pub fn add(first: i32, second: i32) -> i32 { first + second } pub fn main() {}