This commit is contained in:
Jan Gleytenhoover 2024-07-20 12:06:09 +02:00
commit 722a915da6
No known key found for this signature in database
GPG Key ID: 4475057A278E331B
3 changed files with 11 additions and 0 deletions

2
.gitignore vendored Normal file

@ -0,0 +1,2 @@
.idea
target

6
Cargo.toml Normal file

@ -0,0 +1,6 @@
[package]
name = "binary-search-tree"
version = "0.1.0"
edition = "2021"
[dependencies]

3
src/main.rs Normal file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}