From d8d56fd90546cfb6dbf2e4a6c71f8d26642a9690 Mon Sep 17 00:00:00 2001 From: Adam <24621027+WhiteDopeOnPunk@users.noreply.github.com> Date: Fri, 12 Jan 2024 07:13:49 -0500 Subject: [PATCH] add stuff --- rust/.gitignore | 1 + rust/Cargo.lock | 7 +++++++ rust/Cargo.toml | 8 ++++++++ rust/src/main.rs | 6 ++++++ test.js | 5 +++++ test.py | 4 ++++ 6 files changed, 31 insertions(+) create mode 100644 rust/.gitignore create mode 100644 rust/Cargo.lock create mode 100644 rust/Cargo.toml create mode 100644 rust/src/main.rs create mode 100644 test.js create mode 100644 test.py diff --git a/rust/.gitignore b/rust/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/rust/.gitignore @@ -0,0 +1 @@ +/target diff --git a/rust/Cargo.lock b/rust/Cargo.lock new file mode 100644 index 0000000..0e08bdf --- /dev/null +++ b/rust/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "linux_03_backdoor_test" +version = "0.1.0" diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 0000000..6f70758 --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "linux_03_backdoor_test" +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/src/main.rs b/rust/src/main.rs new file mode 100644 index 0000000..599690b --- /dev/null +++ b/rust/src/main.rs @@ -0,0 +1,6 @@ +fn main() { + let mut ligma = 3; + if ligma = 4 { + println!("{}", ligma); + } +} diff --git a/test.js b/test.js new file mode 100644 index 0000000..2778ea2 --- /dev/null +++ b/test.js @@ -0,0 +1,5 @@ +let ligma = 3 + +if (ligma = 4) { + console.log(ligma); +} diff --git a/test.py b/test.py new file mode 100644 index 0000000..b716114 --- /dev/null +++ b/test.py @@ -0,0 +1,4 @@ +ligma = 3 + +if ligma = 4: + print(ligma)