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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/// Adds two numbers and returns the sum
///
/// # Examples
///
/// ```
/// use rust_crate::add;
///
/// let result = add(2, 3);
/// assert_eq!(result, 5);
/// ```
/// Subtracts the second number from the first and returns the difference
///
/// # Examples
///
/// ```
/// use rust_crate::subtract;
///
/// let result = subtract(5, 2);
/// assert_eq!(result, 3);
/// ```
/// Multiplies two numbers and returns the product
///
/// # Examples
///
/// ```
/// use rust_crate::multiply;
///
/// let result = multiply(2, 3);
/// assert_eq!(result, 6);
/// ```