Haskell:<p>* Meaningful whitespace (Yes, you can use {;}, but no one does)<p>* Magic characters (Also optional, but yes everyone uses them)<p>* Dependencies - sort of? You can definitely write anything you want with base+containers+vector.<p>* Garbage Collection<p>* Exceptions - they do exist, even in pure code (although you can't catch them in pure code), but thankfully rare.<p>Rust:<p>* Magic characters<p>* dependency hell is possible here too<p>Is there any language that doesn't check one of these boxes? As far as I can tell, you either have a Garbage Collector, unsafe pointers, or Rust. Is there another language that falls into the Rust category that's not early in development?