|
|
|
|
|
by a1369209993
973 days ago
|
|
> You can't say double negatives It is in fact not the case that you can't say that. Double negatives, like sentences with a excessive number of conjuctions, are perfectly grammatical (when they don't violate some actual grammatical rule like the one "You do can say that." does); rather, they are in most cases stylistically bad, for much the same reasons that: stop = 0
while(a() && !stop):
b()
if(!(c==d || !e())) stop = 1
// should be `if(c!=d && e()) break`
if(!stop) e()
is stylistically bad, namely excessive and more importantly needless complexity. |
|