chembur 0.1.0

A library to pull and push container images
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let five = 5;
///
/// assert_eq!(6, add_one(five));
/// ```
pub fn add_one(x: i32) -> i32 {
    x + 1
}