From ace52558977d44d7fe34e7849a6f52cf42def33b Mon Sep 17 00:00:00 2001 From: "autominion[bot]" <131590069+autominion[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 15:46:59 +0000 Subject: [PATCH] Commit from autominion --- hello-world/Cargo.lock | 7 +++++++ hello-world/Cargo.toml | 6 ++++++ hello-world/src/main.rs | 3 +++ 3 files changed, 16 insertions(+) create mode 100644 hello-world/Cargo.lock create mode 100644 hello-world/Cargo.toml create mode 100644 hello-world/src/main.rs diff --git a/hello-world/Cargo.lock b/hello-world/Cargo.lock new file mode 100644 index 0000000..07ce0fd --- /dev/null +++ b/hello-world/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "hello-world" +version = "0.1.0" diff --git a/hello-world/Cargo.toml b/hello-world/Cargo.toml new file mode 100644 index 0000000..1b85728 --- /dev/null +++ b/hello-world/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "hello-world" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/hello-world/src/main.rs b/hello-world/src/main.rs new file mode 100644 index 0000000..75b91dd --- /dev/null +++ b/hello-world/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello from autominion!"); +}