DEV Community

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

Collapse
 
dserodio profile image
Daniel Serodio

IMHO the worst bash quirk is not being able to put whitespace around the assignment operator, ie.:


foo = bar # syntax error
foo=bar # works as expected

Collapse
 
moopet profile image
Ben Sinclair

*cough* set -o to turn an option on and set +o to turn it off *cough*