August
August
Having macros similar to those in Rust would make more custom/concise syntax possible. Possible macro definition/invocation syntax: Definition ``` rust macro println!($param:expr) { System::out.println($param) } ``` Invocation: ``` rust println!("Hello,...
Type conversion needs to be further developed. It's currently limited to conversions between primitives in additive/multiplicative expressions. Implicit conversions needed: - [ ] Boxing - [ ] Unboxing - [...
Assuming the window user pointer can be used for callbacks goes beyond what an 'interface' should do, imo. GLFW.jl and CImGui.jl's GLFW backend can't be used together because of this...