DEV Community

Discussion on: Which mainstream programming language has the ugliest syntax?

Collapse
 
nektro profile image
Meghan (she/her)

For as many under-the-hood advancements they have when I first came across Go and Rust I denounced them at first because of how ugly they are.

Collapse
 
nestedsoftware profile image
Nested Software • Edited

Yeah, Rust is awful in my opinion! I mean, if you value some of the compiler guarantees it offers, I guess that's fair enough, but it seems more like an academic exercise to me than a usable programming language. One should not have to struggle with a language just to get frequently-used and standard types of logic working.

Collapse
 
dfockler profile image
Dan Fockler

With Rust's lifetimes and it's type system you sometimes end up with pretty crazy type signatures. RefCell<Rc<'a &Mutex>>> mostly that's if you are trying to write concurrent code though.