Day 1 Assignment
How To Submit?
- Go to https://gist.github.com/ and copy the text below into the file.
- Name the file "day-1.rb"
- Add the code below each direction
- Press 'Create a public gist'
- Copy that URL to the Gist, and submit the link as an issue
- The issue name should be "$YourName - Day 1"
- The issue description text should be a link
# Assign "Hello World" to a variable message
# Assign a different string to a different variable
# Assign a number to a variable
# Use string interpolation to display the number in a string
# string interpolation = "#{}"
# Make an array of your favorite movies or books or bands. Have at least 4 values.
# Make a hash of information about yourself. Have at least 4 keys+values
# BONUS 1
# Make an array of hashes containing more information
# about your favorite movies. The hash should have at least 3 keys+values
# BONUS 2
# Use .each to loop through the array of hashes and print only one property of the hash
# For example { title: "Gone with the Wind" } loop through and print only the [:title]