First Commit

main
AlessandroBregoli 3 years ago
commit fa25e1fd75
  1. 2
      .gitignore
  2. 8
      Cargo.toml
  3. 8
      src/lib.rs

2
.gitignore vendored

@ -0,0 +1,2 @@
/target
Cargo.lock

@ -0,0 +1,8 @@
[package]
name = "rustyCTBN"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
Loading…
Cancel
Save