4
moort
8y

I used to think that programming was just straight forward coding what you need.

But now I think it's describing the problem and writing code to solve that problem.

Example: recursive function. It calls itself till it finds a solution or till no options are left. You don't know the answer, but you code something that can find it for you.

Or php, you don't create every single html page, that's done by php dynamically.

The great thing is, it's less work and it is easier to catch error scenarios.
The bad thing is it has become a bit more abstract.

Comments
Add Comment