1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// -------------------------------------------
// Publishing your Crate
// -------------------------------------------
/*
These lines are not going to be part of documentation
*/
// These comments will not be available in the documentation
//! # Basic math crate
//! This is a collection of some generally used math functions
//!
/// Computes a square of an input number
///
/// # Examples
/// # Tests
/// ```
/// let n = 5;
/// let answer = new_project::square(n);
/// assert_eq!(25,answer);
/// ```
/// # limitations
///
/// # Some other section
/// Computes a cube of an input number
///
/// # Examples
/// # Tests
/// ```
/// let n = 5;
/// let answer = new_project::cube(n);
/// assert_eq!(125,answer);
/// ```
/// # limitations
///
/// # Some other section