newest submissions : multi
•
2026-04-29 21:37
significant whitespace-friendly Rust parser generator ?
Hello I don't know if questions like this are accepted here. If they're not, please let me know. I have been playing around with writing a tiny compiler to WASM. The syntax I have in mind is roughly something like this fn div_rem(x: int, y: int) (int, int) let div, rem = x / y, x % y return div, rem Now, I don't want to commit too hard into a specific syntax or grammar, so so far I have been just...