https://github.com/turingschool-examples/nested_collections
https://github.com/turingschool-examples/nested_collections
be-1 lesson-material ruby
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/turingschool-examples/nested_collections
- Owner: turingschool-examples
- Created: 2022-02-15T15:26:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T23:33:06.000Z (almost 3 years ago)
- Last Synced: 2025-06-05T07:47:42.433Z (4 months ago)
- Topics: be-1, lesson-material, ruby
- Language: Ruby
- Size: 5.86 KB
- Stars: 0
- Watchers: 9
- Forks: 34
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nested Collections
## Within the `Examples` directory you will find files that correlate with the `Nested Collections` lesson. You will work within this repo during the class in breakout rooms. During the lesson the instructor will notify you on which file you will be working in.
## Set Up
- Clone this repo## Making it run
- In each file you will see a collection
- Below that collection you will see commented out instructions on what you are trying to implement
- Write your code below the commented out instructions. These files will not implement tests so you will need to use a `p`
before the code in order to print to your terminal.Example:
```ruby
names = ["bob", "linda", "joe", "sally"]
p names.upcase
```
- From the CLI (command line interface) type `ruby `Example:
```ruby
ruby warm_up.rb
```