Slide 7
Slide 7 text
More Types
Arrays
● [“One”, 2, :3]
● Arrays are dynamically typed, so they can contain values of different types.
● Arrays are more like what other languages call “lists”, since they can be modified.
Ranges
● 0..10
● Can be used to into into an array like this: array[0..10]
Hashes
● person = { “Name” => “Bob”, “Age” => 15 }
● Like a dictionary or hash map in other languages.
● person = { name: “Bob”, age: 15 }
● name: “Bob” is the same as :name => “Bob”, but easier to read and write.
● Looking up a value: person[:name]