| Crates.io | brute-force-print |
| lib.rs | brute-force-print |
| version | 0.1.0 |
| created_at | 2022-05-30 17:43:05.919473+00 |
| updated_at | 2022-05-30 17:43:05.919473+00 |
| description | A simple and silly library to print in a bruteforce manner |
| homepage | https://gitlab.com/iamawacko/brute-force-print |
| repository | https://gitlab.com/iamawacko/brute-force-print |
| max_upload_size | |
| id | 597089 |
| size | 3,030 |
This is a simple and useless library to print in a bruteforce fashion. It was inspired by a Reddit post.
In your Cargo.toml:
brute-force-print = "0.1.0"
use brute_force_print::bprintln;
fn main() {
let printable = "Hello, Brute Force!".to_string();
bprintln(printable);
}