diff --git a/Cargo.toml b/Cargo.toml index d0d2554..b04e228 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/examples/hello.rs b/examples/hello.rs new file mode 100644 index 0000000..dcd7fd5 --- /dev/null +++ b/examples/hello.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello from an example!"); +}