logoalt Hacker News

artemonstertoday at 7:51 AM2 repliesview on HN

I wonder how much potential optimisation there is if we entirely drop pointer nonsense.


Replies

aw1621107today at 10:06 AM

Are you talking about dropping pointers as a programmer-facing programming language concept (in which case you might find Hylo and similar languages interesting), or dropping pointers from everything - programming languages, their implementations, compilers, etc. (in which case I'm not sure that's even possible)?

show 1 reply
newpavlovtoday at 12:58 PM

For a system programming language the right solution is to properly track aliasing information in the type system as done in Rust.

Aliasing issues is just yet another instance of C/C++ inferiority holding the industry back. C could've learnt from Fortran, but we ended up with the language we have...