flowrlib 0.91.0

Flow Runner Library (flowrlib) for 'flow' programs
Documentation
const VERSION: &str = env!("CARGO_PKG_VERSION");

/// Return the version number of the `flowrlib` library
pub fn version() -> &'static str {
    VERSION
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn can_get_version() {
        assert!(!version().is_empty());
    }
}