Honestly, I love figma for this. For make a simple layout that I can turn unto HTML code later, figma is killer.
Honestly, I love figma for this. For make a simple layout that I can turn unto HTML code later, figma is killer.
Except when your rewriting it in rust, ofc 😎
He has a lot of other good ones too. I hope you check them out!
This certainly isn’t a new idea. Derek Sivers has a post about it from 2022: https://sive.rs/plaintext
Wow, this article taught me so much about rust compilation and LLVM!
The concept is super cool. Can’t wait until see implementation!
Where’s the code? I’m sure everyone interested in VR development could benefit
I just started writing a programming language! I’m using pest for the grammar/lexing, which makes if super easy. I built my ast using enums and structs, which makes me appreciate Rust even more. I also am coming to love the way rust handles errors. For example, when there’s an error converting from pest -> ast, it feeds all of the error into into my error type, which is so much easier to handle than making it panic out of the function