preserves/implementations/rust/src/lib.rs

10 lines
111 B
Rust

pub mod value;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}