diff --git a/SLS_Rust/sls_rust/.gitignore b/SLS_Rust/sls_rust/.gitignore new file mode 100644 index 0000000..6936990 --- /dev/null +++ b/SLS_Rust/sls_rust/.gitignore @@ -0,0 +1,3 @@ +/target +**/*.rs.bk +Cargo.lock diff --git a/SLS_Rust/sls_rust/Cargo.toml b/SLS_Rust/sls_rust/Cargo.toml new file mode 100644 index 0000000..c6bc271 --- /dev/null +++ b/SLS_Rust/sls_rust/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "sls_rust" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/SLS_Rust/sls_rust/src/main.rs b/SLS_Rust/sls_rust/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/SLS_Rust/sls_rust/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}