From 2c144f06503b8aaf242ba7f707d6cf7f0a2d7cc6 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Fri, 19 Feb 2021 11:08:41 +0900 Subject: [PATCH] Add start of rust impl --- rust_impl/.gitignore | 1 + rust_impl/Cargo.toml | 9 +++++++++ rust_impl/src/main.rs | 3 +++ 3 files changed, 13 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..1e92a90 --- /dev/null +++ b/rust_impl/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "RunLengthEncoding" +version = "0.1.0" +authors = ["Stephen Seo "] +edition = "2018" + +# 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!"); +}