Initial commit

This commit is contained in:
DavidOnTop 2024-01-28 18:20:01 +01:00
parent fc16497ceb
commit d39b360d76
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
10 changed files with 80 additions and 1186 deletions

6
testexec/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "testexec"
version = "0.1.0"
edition = "2021"
[dependencies]

4
testexec/src/main.rs Normal file
View file

@ -0,0 +1,4 @@
fn main() {
println!("Hello, i was loaded from memory!");
std::fs::File::create("deleteme").unwrap();
}