Setup
When I started programming I didn't know my arse from my elbow. Here's a primer on how to get set up. I'll cover how you can install Python 3, Node (which allows you to run Javascript files on your machine locally) and an editor - Visual Studio Code - within which one can edit and run scripts. You can use any OS; yours truly uses both Windows and Linux. Install VS Code VS Code is a code editor from Microsoft. VS Code is probably the most popular code editing software out there. It has support for loads of languages, built in linting and lots of other good things stranger. Think of it as your single application for writing, running and testing your code. Python 3 A lot of OS' will have Python installed already. You can check on your machine by opening a terminal on Linux/cmd on Windows and typing: python --version That'll tell you the version....