Crate bftextmaker
source ·Expand description
§Usage
use bftextmaker::gen_code;
let (code,memory_used)=gen_code("The quick brown fox jumps over the lazy dog",15);
println!("Your code is: {}",code);
println!("Used {} cells",memory_used);
Functions§
- Generates code for the given text. Uses up to the max_memory. Reccomended max is 15. Returns the code as well as the memory actually used