Finn
Results
2
issues of
Finn
Consider to remove: ```rust pub type Complex32 = Complex; pub type Complex64 = Complex; ``` in favor of: ```rust #[allow(non_camel_case_types)] pub type c32 = Complex; #[allow(non_camel_case_types)] pub type c64 =...
Currently, the interpreter's call mechanism is coupled with the call stack of the host environment because of its recursive implementation. The very same issue exists in CPython, which led eventually...
A-design
A-vm