brute-force-print 0.1.0

A simple and silly library to print in a bruteforce manner
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 5.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.17 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • iamwacko

Brute Force Print

This is a simple and useless library to print in a bruteforce fashion. It was inspired by a Reddit post.

Example Usage

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);
}