Before we start writing code in the Visual Studio Code editor, let's create a working directory on your workstation, where we will be creating the source code files.
If you are using a Windows operating system-based workstation, then open Windows Command Prompt and run the following command to create a directory, where we will be creating the source files:
mkdir src
If you are using a macOS or Linux operating system, then open a Terminal Window and run the following command to create a directory, where we will be creating the source files:
mkdir src
Do the following once the mkdir src command is executed:
- Once you have ...