add stuff
This commit is contained in:
parent
87637e0a21
commit
d8d56fd905
6 changed files with 31 additions and 0 deletions
1
rust/.gitignore
vendored
Normal file
1
rust/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
7
rust/Cargo.lock
generated
Normal file
7
rust/Cargo.lock
generated
Normal 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
8
rust/Cargo.toml
Normal 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
6
rust/src/main.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
fn main() {
|
||||
let mut ligma = 3;
|
||||
if ligma = 4 {
|
||||
println!("{}", ligma);
|
||||
}
|
||||
}
|
5
test.js
Normal file
5
test.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
let ligma = 3
|
||||
|
||||
if (ligma = 4) {
|
||||
console.log(ligma);
|
||||
}
|
4
test.py
Normal file
4
test.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
ligma = 3
|
||||
|
||||
if ligma = 4:
|
||||
print(ligma)
|
Loading…
Add table
Reference in a new issue