Remix.run Logo
treyd 20 hours ago

Interesting 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.

kzrdude 20 hours ago | parent [-]

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.

int_19h 11 hours ago | parent [-]

Avoiding references means avoiding the borrow checker, and I don't think you can use much of stdlib if you avoid references...

lkuty 5 hours ago | parent [-]

At the beginning of one of his videos on Crust, he's trying to avoid stdlib exactly for that reason.