From 3de9ac7cdfe4f3e7e57d51bd15e5f4606f96d3b4 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 8 Jan 2022 20:17:53 +0900 Subject: [PATCH] Init skeleton rust project --- rust_impl/.gitignore | 1 + rust_impl/Cargo.toml | 8 ++++++++ rust_impl/src/main.rs | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 rust_impl/.gitignore create mode 100644 rust_impl/Cargo.toml create mode 100644 rust_impl/src/main.rs diff --git a/rust_impl/.gitignore b/rust_impl/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/rust_impl/.gitignore @@ -0,0 +1 @@ +/target diff --git a/rust_impl/Cargo.toml b/rust_impl/Cargo.toml new file mode 100644 index 0000000..44b4995 --- /dev/null +++ b/rust_impl/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "reciprocal_of_palindromes" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/rust_impl/src/main.rs b/rust_impl/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/rust_impl/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}