[][src]Function ralgebra::sub

pub fn sub(a: i32, b: i32) -> i32

Subtracts the second number from the first one.

Two numbers and a minus sign walks into a bar.

Examples

let result = ralgebra::sub(9, 4);
assert_eq!(result, 5);