excelsior!
I see you added another video on to your original one - about using global variables exclusively.
When I am making small programs, making all variables global can be a great help. But, when my
program starts getting large, I find I must enclose local variables to functions, to keep from overwriting
other information on other variables. I used them so much, I have a variable overload, which wrote into a memory block in which it was not supposed to; and crashed my computer.
Having learned that lesson, I got an experience of why functions are important, besides being cool.
So, there you have it!!
If you want really powerful code, with very little statements, try FORTH. It is challenging, and not many programmers use it today. It is used in all the cool space stuff, so have a look at it!!
good luck