Live data from Hacker News

How to Optimize Rust for Slowness: Inspired by New Turing Machine Results

medium.com

1–10 of 18 posts

Re: How to Optimize Rust for Slowness: Inspired by New Turing Machine Results

#8

If our only goal is to run forever, the solution is immediate: ```rs fn main() { loop {} } ``` I think this can even cause Undefined Behavior :) https://github.com/rust-lang/rust/issues/28728

This was fixed, llvm added the `mustprogress` attribute to get C++ semantics and Rust doesn't set it.
Post reply on HN