initial commit

This commit is contained in:
sevki 2024-03-11 17:45:49 +00:00
commit 22fc3fce63
3 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "jetstream"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Placehodler for Jetstream"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

14
src/lib.rs Normal file
View file

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}