commit b9439ad55bd8b8dcfe5965130549bb31858a3ffb Author: Elex Date: Sun Feb 26 01:17:42 2023 +0900 2023-02-26 01:17 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/README.md b/README.md new file mode 100644 index 0000000..5b38f3c --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Rust Examples \ No newline at end of file diff --git a/rust_test_1/.gitignore b/rust_test_1/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/rust_test_1/.gitignore @@ -0,0 +1 @@ +/target diff --git a/rust_test_1/Cargo.lock b/rust_test_1/Cargo.lock new file mode 100644 index 0000000..4349e60 --- /dev/null +++ b/rust_test_1/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "rust_test_1" +version = "0.1.0" diff --git a/rust_test_1/Cargo.toml b/rust_test_1/Cargo.toml new file mode 100644 index 0000000..5c0998d --- /dev/null +++ b/rust_test_1/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rust_test_1" +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_test_1/src/main.rs b/rust_test_1/src/main.rs new file mode 100644 index 0000000..c47a881 --- /dev/null +++ b/rust_test_1/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!!!"); +} diff --git a/rust_test_2/.gitignore b/rust_test_2/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/rust_test_2/.gitignore @@ -0,0 +1 @@ +/target diff --git a/rust_test_2/Cargo.lock b/rust_test_2/Cargo.lock new file mode 100644 index 0000000..0eb08b5 --- /dev/null +++ b/rust_test_2/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "rust_test_2" +version = "0.1.0" diff --git a/rust_test_2/Cargo.toml b/rust_test_2/Cargo.toml new file mode 100644 index 0000000..e3f74ff --- /dev/null +++ b/rust_test_2/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rust_test_2" +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_test_2/src/main.rs b/rust_test_2/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/rust_test_2/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}