diff options
| author | Ben Ray | 2026-05-03 16:15:20 -0400 |
|---|---|---|
| committer | Ben Ray | 2026-05-03 16:15:20 -0400 |
| commit | 9563ee0d1f5a9c6efea6bebdf3fce43fae148fd8 (patch) | |
| tree | 0f5241457853fe1b26214b81ab0f558f003a1ac5 | |
init
| -rw-r--r-- | hello-async/Cargo.toml | 6 | ||||
| -rw-r--r-- | hello-async/src/main.rs | 3 |
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!"); +} |
