rust-fcp/src/lib.rs

25 lines
360 B
Rust
Raw Normal View History

mod types;
2021-01-12 12:21:01 +00:00
use types::fcp_types;
#[cfg(test)]
mod tests {
#[macro_export]
macro_rules! vec {
( $( $x:expr ),* ) => {
{
let mut temp_vec = Vec::new();
$(
temp_vec.push($x);
)*
temp_vec
}
};
}
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}