borrow-fix
Is the borrow checker getting in your way?
This crate fixes that.
Example:
without borrowfix:
let s = Stringnew;
printit;
println!; // Wont compile :(
with borrowfix:
use remember;
let s = Stringnew;
let refer = remember;
printit;
println!; // Works fine
Safety
This crate is compleatly sound. It wont causÊÃúý$HOME/projects/borrowf[SEGMENTATION FAULT]