Learn to Program

Chapter 1

Chapter 1 doesn't have any programming in it. What you need to know is:

  • How to download Ruby:
  • How to navigate the command line:
    • dir
      • List all the files/folders in the current directory
    • cd
      • Change Directory, you need to specify a folder after the cd
    • cd..
      • Go up a folder

To go through multiple folders at once, like to get to my desktop from the root C:\ drive, I would type: cd Users/jhough/Desktop. The same thing works with going up levels: cd ../../.. would get me up three levels.