Setup library for future examples

This commit is contained in:
2022-09-19 19:18:25 -04:00
parent 86b38b34c7
commit 1ed304f0aa
2 changed files with 5 additions and 0 deletions

View File

@@ -6,3 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]

3
examples/hello.rs Normal file
View File

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