Don’t write multiple statements in one line
… for several reasons:
- It doesn’t boost the performance.
- It doesn’t reduce the memory usage.
- It is hard to set a breakpoint while debugging.
- It reduces the readability.
- It is nothing to show off.
Counter example:
Don’t write multiple statements in one line for that, it doesn’t boost the performance and reduce the memory usage, but hard to set a breakpoint while debugging as well as reducing the readability, plus it is nothing to show off.
October 17th, 2007 at 9:52 pm
This is exactly the point of my boss. He wants me to use
\begin{itemize}
\item
\item
…
\end{itemized}
as much as possible.
November 21st, 2007 at 10:23 pm
good points.