make argus the common crate

This commit is contained in:
Anand Balakrishnan 2023-10-03 17:13:20 -07:00
parent 0df9aba559
commit db3a63f9e1
No known key found for this signature in database

View file

@ -1,14 +1,5 @@
pub fn add(left: usize, right: usize) -> usize { pub mod prelude {
left + right pub use argus_core::prelude::*;
} pub use argus_parser::parse_str;
pub use argus_semantics::{BooleanSemantics, QuantitativeSemantics, Trace};
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
} }