//! # prunus
//!
//! prunus is a genus of trees and shrubs, which includes (among many others)
//! the fruits plums, cherries, peaches, nectarines, apricots, and almonds.
pub use Tree;
/// Turn the peaches into plums using the formula:
/// plum = (peach * 3 - 4) * 2
///
/// # Examples
///
/// ```
/// let a = 6;
/// let result = prunus::turn_peach_into_plum(a);
///
/// assert_eq!(result, 28);
/// ```