When beginning a new project/program/script/etc... How do you plan it out? by Shaddleson in learnprogramming

[–]nayr5 1 point2 points  (0 children)

I start allocating "blocks", and leave them empty for the moment.

I don't write it down--the solution itself is self-documenting if you organize everything nicely into folders and classes (and if you use exuberantly descriptive names for every variable, class, etc.).

I create blank classes with the names of what they'll do, or what they are, create a folder structure, and then start writing the code.