show/hide this revision's text 2 response to chris's comment; [made Community Wiki]

I had a little argument, and was wondering what people out there think:

In C++ (or in general), do you prefer code broken up into many shorter functions, with main() consisting of just a list of functions, in a logical order, or do you prefer functions only when necessary (i.e., when they will be reused very many times)? Or perhaps something in between?

show/hide this revision's text 1

More vs Less Functions

I had a little argument, and was wondering what people out there think:

In C++ (or in general), do you prefer code broken up into many shorter functions, with main() consisting of just a list of functions, in a logical order, or do you prefer functions only when necessary? Or perhaps something in between?