Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.14 KB

README.md

File metadata and controls

31 lines (19 loc) · 1.14 KB

Homework #2

Instructions


  1. Feynman Writing Prompts - Write out explanations of the following concepts like you are explaining it to a 12 year old. Doing this will help you quickly discover any holes in your understanding. Ask your questions on Slack.

    • for-- for creates a loop that executes a code within the loop
    • &&, ||, !-- logical operators, && runs code only if two conditions are met, || or, runs code if one of two statements are met, ! not, returns true if the opposite of the code is true.
    • Arrays-- Arrays are variables that hold more than one type of variable
    • Git--- a system for making changes to code, allows multiple people to work on code.
    • GitHub-- a website for storing and managing gits.
  2. Install git. https://git-scm.com/downloads

  3. Fork and clone this repo. When you need to commit use the following commands.

    • git status
    • git add --all
    • git status
    • git commit -m "your commit message"
    • git push origin master
  4. Make the tests pass!

Congratulations on finishing Homework #2!

For more information about Lambda School's six month CS program visit: https://lambdaschool.com