This commit is contained in:
mae.kasza 2022-09-22 13:34:26 +02:00
commit 00ee4f3c4d
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

8
Cargo.toml Normal file
View File

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

4
src/lib.rs Normal file
View File

@ -0,0 +1,4 @@
pub fn asdf() {
println!("{}", env!("CARGO_MANIFEST_DIR"));
}