Sunjay Varma

Results 102 comments of Sunjay Varma

Old notes from Jul 16: The [operations](https://github.com/brain-lang/brain/blob/develop/src/operations/operation.rs) that we have defined as our IR before code generation can be written out as their own little low-level language. ```rust // The...

This was mostly implemented in PR #34. The syntax is stable, though the static checking still needs work. This may get prioritized until after MVP.

On hold until we progress more with the language.

Example idea: polish notation calculator When dynamic arrays are implemented: reverse polish notation calculator

You can fix this in a somewhat hacky way by adding the module to `sys.modules` manually. From your Rust code, this can look like: ```rust #[pymodule] fn supermodule(py: Python, module:...

Could a new version of this crate be released? https://github.com/fflorent/nom_locate/commit/7eb8155c16b18603f98b72cc9051425f81c84d10 fixes this issue but it's only on master, not on crates.io yet.

@bvssvni Thanks! Can I use that with piston?

Would it be possible to add support for simple paths without bringing in something like lyon? All I need is something like `line` that accepts more than two points. It...

If I'm understanding correctly, triangles would need to be closed. Is there a way to render a path of points that wouldn't connect end-to-end?

Could you tell me which Rust version (`rustc --version --verbose`) and operating system you are on? Please also provide your Cargo.lock file and tell me the exact command you ran...