Structure of a Computer Language * Write the Hello World program * Characterset - ASCII & Unicode * Variables * Types - numbers, strings, booleans * Simple Statements - assignment * Operators - Arithmetic: + - * / % - Comparison: < <= > >= == != - Boolean: not, and, or - Bitwise - Shift * Conditionals: if-else * Loops: while, for * Function * List - Tuples - Sets - Dictionaries * Simple Input / Output: Console & File * Class