0
How to write code fast?
Details explain tips and tricks
2 Respostas
+ 3
Write slowly to be fast.
That means: First make a good plan.
And then don't write 100 lines in one run, but write small pieces, that you test and debug separately and immediately.
Format your code well, choose good names, add comments where it would be still confusing without.
You seem to move slowly, but you'll still be quicker than with the opposite.
If you don't have a plan, you might end up having to rewrite ALL of it.
If it's untidily written and uncommented, you'll waste time trying to understand your own code.
If you write too much in one go, it will be debugging hell for you and you'll waste a lot of time.
+ 1
Thanks buddy