summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Ray2026-05-03 16:15:20 -0400
committerBen Ray2026-05-03 16:15:20 -0400
commit9563ee0d1f5a9c6efea6bebdf3fce43fae148fd8 (patch)
tree0f5241457853fe1b26214b81ab0f558f003a1ac5
init
-rw-r--r--hello-async/Cargo.toml6
-rw-r--r--hello-async/src/main.rs3
2 files changed, 9 insertions, 0 deletions
diff --git a/hello-async/Cargo.toml b/hello-async/Cargo.toml
new file mode 100644
index 0000000..72b4aab
--- /dev/null
+++ b/hello-async/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "hello-async"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
diff --git a/hello-async/src/main.rs b/hello-async/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/hello-async/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}