Skip to main content

matrix_gui/
lib.rs

1//! Matrix GUI Library
2//! 
3//! A GUI library for matrix operations and visualization.
4
5pub fn add(left: u64, right: u64) -> u64 {
6    left + right
7}
8
9#[cfg(test)]
10mod tests {
11    use super::*;
12
13    #[test]
14    fn it_works() {
15        let result = add(2, 2);
16        assert_eq!(result, 4);
17    }
18}