Compiler for the B Programming Language
github.com
Compiler for the B Programming Language
1–10 of 25 posts
Re: Compiler for the B Programming Language
#2Interesting that this is in a self-developed subset/dialect of Rust called Crust which attempts to treat it as a better C, using unsafe everywhere among other things.
Re: Compiler for the B Programming Language
#3This is the most tsoding thing possible.
Re: Compiler for the B Programming Language
#4Interesting that this is in a self-developed subset/dialect of Rust called Crust which attempts to treat it as a better C, using unsafe everywhere among other things.
That's a little bit interesting. It remains then a C-like language with generics, and that sounds a lot more fun than regular C. I don't yet understand the point of avoiding references or libstd, though.
Re: Compiler for the B Programming Language
#5Had a go at this a while back: https://github.com/elvircrn/bcomp.
Re: Compiler for the B Programming Language
#6Fun to see that it implements codegen for Uxn :)
Re: Compiler for the B Programming Language
#7A pretty recent work: https://github.com/sergev/BCause .
Re: Compiler for the B Programming Language
#8Nice, but it really needs to be written in B and self-hosted.
Re: Compiler for the B Programming Language
#9Interesting that this is in a self-developed subset/dialect of Rust called Crust which attempts to treat it as a better C, using unsafe everywhere among other things.
That's a little bit interesting. It remains then a C-like language with generics, and that sounds a lot more fun than regular C. I don't yet understand the point of avoiding references or libstd, though.
Avoiding references means avoiding the borrow checker, and I don't think you can use much of stdlib if you avoid references...
Re: Compiler for the B Programming Language
#10[dead]