first commit

This commit is contained in:
Peter Schiwy
2025-02-03 22:32:05 +01:00
parent 520f81d44c
commit e337d202ae
13 changed files with 337 additions and 0 deletions

1
main/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

7
main/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "main"
version = "0.1.0"
edition = "2021"
[dependencies]
database = { path = "../database" }

10
main/src/main.rs Normal file
View File

@@ -0,0 +1,10 @@
use database::add;
use database::sub;
fn main() {
let test = add(2, 5);
let sub = sub(10, 5);
println!("{test}");
println!("{sub}");
}