brickdb_lib/
lib.rs

1/// A placeholder function that prints "Hello, world!" to the console.
2pub fn hello() {
3    println!("Hello, world!");
4}
5
6#[cfg(test)]
7mod tests {
8    use super::*;
9
10    #[test]
11    fn test_hello() {
12        hello();
13    }
14}