Learning programming with Swift
August 18, 2019•1,752 words
Introduction
Programming is about telling a machine very very precisely what you want it to do.
The program code you are writing are instructions that tell the computer what to do.
The computer is in a sense very stupid because it will not do "what you meant",
but only exactly what you said.
If you have a large program with millions of lines of code,
one error in one line can make the whole program useless.
However, it's important to note,
that you basically cannot write a correct program on t...
Read post