Lib3d6
This is my Rust utility library, there are many like it, many superior in almost all aspects, but this one is mine.
Currently it's a sort of toy project as I'm re-learning the language.
F-String Print
Python printing is cool, it's pretty easy to get it working in rust.
Warning: Implementation is currently WIP, it works but I'm sure there are bugs and it's inefficient and somewhat ugly.
// Importing is kind of ugly, looking for help making it better
// `*` import leads to ambiguity, and I can't get an import macro working
use ;
let v1 = ;
let v2 = 121421;
let v3: f32 = 32.12;
let v4: &str = "Ahhha";
let v5 = ;
let v6 = "have".to_owned;
let v7 = Some;
assert_eq!;
// Same thing happens with print and println
println!;
print!;
print!;
println!;