diff options
author | yuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef> | 2025-05-29 04:26:24 +0000 |
---|---|---|
committer | yuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef> | 2025-05-29 04:26:24 +0000 |
commit | d6135c7d89697ab7e514fdd906eda6eb2dc08fc8 (patch) | |
tree | 634896c3a923bbb4d6778568bf609136df1cf849 | |
download | salaryman-d6135c7d89697ab7e514fdd906eda6eb2dc08fc8.tar.gz salaryman-d6135c7d89697ab7e514fdd906eda6eb2dc08fc8.tar.bz2 salaryman-d6135c7d89697ab7e514fdd906eda6eb2dc08fc8.zip |
Initial Import
git-svn-id: svn+ssh://diminuette.aengel.lesbianunix.dev/salaryman/trunk@1 b9215c17-b818-4693-b096-d1e41a411fef
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | src/main.rs | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..89be40e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "salaryman" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |