Initial Commit

This commit is contained in:
Camerin Figueroa 2024-10-16 19:51:11 -04:00
parent 0b8b84891c
commit 76725e8164
3 changed files with 21 additions and 0 deletions

12
.gitignore vendored
View File

@ -14,3 +14,15 @@ Cargo.lock
# MSVC Windows builds of rustc generate these, which store debugging information # MSVC Windows builds of rustc generate these, which store debugging information
*.pdb *.pdb
# Added by cargo
/target
# Added by cargo
#
# already existing elements were commented out
#/target

6
Cargo.toml Normal file
View File

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

3
src/lib.rs Normal file
View File

@ -0,0 +1,3 @@
pub fn hello_world() {
println!("Hello World");
}