commit be3e7359a60f9c57ec161a7dcf561782b50efa0a Author: bdmfegys@duck.com <bdmfegys@duck.com> Date: Sun, 19 May 2024 13:01:59 -0400 inital commit! Diffstat:
| A | .gitignore | | | 1 | + |
| A | test.rs | | | 3 | +++ |
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -0,0 +1 @@ +test diff --git a/test.rs b/test.rs @@ -0,0 +1,3 @@ +fn main() { + println!("hello world!"); +}