sinorust 0.1.1

a simple hello world!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub fn version() -> &'static str {
    "0.1.0"
}

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

    #[test]
    fn test_version() {
        assert_eq!("0.1.0",version());
    }
}