in reply to Re^2: How do you program (again)?
in thread How do you program (again)?

One of the benefits of the technique I presented is that it's actually easier to reach a working program quickly.

When you write in layers from the bottom up, you test each layer which is simpler than the whole program, and thus assure yourself minimal bugs (debugging usually takes more time than code-writing). When you write the next (higher) level, you rely on a tested lower level and have more confidence. Massive unit-testing along the way and you're set for a working, clean solution.

Replies are listed 'Best First'.
Re^4: How do you program (again)?
by wazoox (Prior) on Jun 03, 2005 at 07:20 UTC
    Well, I'll need sooner or later to dig into Test... I always test my code as I write it, I simply cut and paste small parts in little scripts... That's not elegant but that works pretty well!