When you are writing code, it is good to have a folder structure which is logical to you so you can quickly find code and files you are looking for.
- Create a new folder called "ada" inside of your home directory to store Ada-related folders and files. Once the folder is created, switch into that new folder:
cd ~
mkdir ada
cd ada
- Create a new folder called "jumpstart" which will store all folders and files related to this Jumpstart work. Once the folder is created, switch into that new folder:
mkdir jumpstart
cd jumpstart
- Verify that the folder structure was created appropriately by running the
pwd
command. The output should include your username and end with/ada/jumpstart
.