commit 8a021a5d921e2ca96f631ae615842db87ddc1977 Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com> Date: Sun, 16 Jun 2024 12:38:25 -0700 Initialize crate Diffstat:
| A | .gitignore | | | 1 | + |
| A | Cargo.toml | | | 6 | ++++++ |
| A | src/main.rs | | | 3 | +++ |
3 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "coliru" +version = "0.0.0" +edition = "2021" + +[dependencies] diff --git a/src/main.rs b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}