fix: Add temporary main function to lib.rs

This commit is contained in:
Diana Carvalho
2025-01-16 14:42:42 +00:00
parent c27b253ef5
commit 1e54ea045e

View File

@@ -0,0 +1,12 @@
#[allow(dead_code)]
fn main() {
println!("Hello, world!");
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}