We’re about to go over some universal rules of code syntax to learn the structure of code files and to understand some fundamental terms and concepts.
Statements and Semicolons
The term statement refers to what is essentially a single instruction of code. Different sorts of statements exist to do different things.
A statement will end in a semicolon “;”. This tells the computer where one statement ends and the next is to begin. Some languages don’t use semicolons at all and instead allow the end of a line to signify the end of a statement. The advantage of using semicolons ...