Init skeleton rust project

This commit is contained in:
Stephen Seo 2022-01-08 20:17:53 +09:00
parent 4274dbfc7d
commit 3de9ac7cdf
3 changed files with 12 additions and 0 deletions

1
rust_impl/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

8
rust_impl/Cargo.toml Normal file
View File

@ -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]

3
rust_impl/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}