hebrew_accents 0.0.0

A library for working with Hebrew accents, addressing there complexities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

// TODO :  remove
pub fn dummy_function(left: u64, right: u64) -> u64 {
    left + right
}

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

    #[test]
    fn it_works() {
        let result = dummy_function(2, 2);
        assert_eq!(result, 4);
    }
}