Hey there! Welcome to Quizzer, your friendly command-line quiz app. This app is designed to help you learn programming fundamentals through interactive quizzes in your terminal. It's super easy to get started. Here's how you can set it up and start quizzing!
-
Clone the repository
git clone https://github.com/yourusername/quizzer.git cd quizzer
-
Install dependencies
Make sure you have Bundler installed. If not, you can install it by running:
gem install bundler
Then, install the necessary gems:
bundle install
-
Run the Quizzer
To start the quiz, just run:
bin/quizzer
Want to add your own quizzes? Just create a new YAML file in the quizzes
directory with your questions. Here’s a sample format to get you started:
questions:
- question: "What is the best city in America"
choices:
- "New York"
- "Los Angeles"
- "San Francisco"
- "San Diego"
correct: "San Diego"