Indentation is the visual structure of how your code is laid out. It uses tabs to organize code into a hierarchy.
Having correct indentation is a crucial aspect of programming style.
How to indent your code
Use the tab key to insert a tab before a line of code or use the delete/backspace key to remove a tab.
Do not use spaces to indent your code. Using tabs allows you to have a consistent length, and having spaces makes it easy to have code that is misaligned.
Mass indentation: Indenting multiple lines at once.
Select the code you want to indent and hit
TAB // indent code forward
SHIFT+TAB // indent code back
Why is indentation important?