Y
Hacker News
new
|
ask
|
show
|
jobs
by
haukur
5145 days ago
I've always found code without spaces around these symbols to be very undreadable.
2 comments
pilot_pirx
5145 days ago
Yes, but in this case it's not about readability, but about extremely significant whitespace. Forgetting a space and your code has a totally different meaning.
link
xyzzyb
5145 days ago
Whitespace is already extremely significant in programming. "foo[1]" vs "foo [1]" for example.
link
pilot_pirx
5145 days ago
Depends on language, in Ruby those statements would be identical. But anyway, that's no reason to make things even worse.
link
mbrubeck
5145 days ago
In Ruby those statements are the same when
foo
is bound to an array, but they are different when
foo
is bound to a function...
link
megablast
5145 days ago
And I have found the opposite. Horses for courses.
link