add stuff

This commit is contained in:
Adam 2024-01-12 07:13:49 -05:00
parent 87637e0a21
commit d8d56fd905
6 changed files with 31 additions and 0 deletions

1
rust/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
rust/Cargo.lock generated Normal file
View file

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

8
rust/Cargo.toml Normal file
View file

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

6
rust/src/main.rs Normal file
View file

@ -0,0 +1,6 @@
fn main() {
let mut ligma = 3;
if ligma = 4 {
println!("{}", ligma);
}
}

5
test.js Normal file
View file

@ -0,0 +1,5 @@
let ligma = 3
if (ligma = 4) {
console.log(ligma);
}

4
test.py Normal file
View file

@ -0,0 +1,4 @@
ligma = 3
if ligma = 4:
print(ligma)