jmr 0.1.0

A simple library that exports a jmr variable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// The jmr constant variable
pub const JMR: &str = "jmr";

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

    #[test]
    fn test_jmr_value() {
        assert_eq!(JMR, "jmr");
    }
}