This commit is contained in:
Daniel Flanagan 2022-10-17 11:35:57 -05:00
commit 7999b5342a
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
5 changed files with 25 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "reest"
version = "0.1.0"

11
Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "reest"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "reest"
test = true
doc = false
[dependencies]

3
src/bin/reest/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
reest::greet_world();
}

3
src/lib.rs Normal file
View File

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