No description
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md |
Leak Memory
leaks memory uwu
Examples
Leak 1337 bytes of memory
use leak_memory::{leak, LeakMethod};
fn main() {
leak(1337, LeakMethod::Lazy);
}
Leak 69 kibibytes
use leak_memory::{leak, LeakMethod, LeakAmount};
fn main() {
leak("69kib".parse::<LeakAmount>().unwrap(), LeakMethod::Rust);
}
Compilation
dont