Thoughts
> Error-driven development works like this: you write a piece of code and try to run it. If you get an error when you run the code, you
> write just enough code to fix that particular error, and nothing more. You repeat this process until you have the result you want.
This is exactly how I code