|
|
|
|
|
by progman
3132 days ago
|
|
> Next cool possibility: use a Rust-like LISP Why do you want a Rust with Lisp syntax? I don't see the benefits of such a "Lisp" if you take the core benefits of metaprogramming at runtime away which depends on the equality of code and data. Safe software can also be written in other languages than Rust. Ada is still industry standard of safe programming today. Even Lisp can be used to write safe software since Lisp's memory management takes care of possible pointer problems. Rust shines in the field where Mozilla developed it for -- safe Internet browsers. However, safe Internet browsers could also be written in Ada and Lisp. The Lisp version would just not be as performant as Ada's and Rust's. |
|
What makes browsers perform badly is the execution of all that Javascript.
In Lisp, we can scan Javascript and go to machine code with far less work than doing the same thing in Ada.
The Ada browser might beat the Lisp one on the raw rendering of a big HTML-only page.