Simple command line quiz game to practice using go.
Use go build
to build
To run the quiz, use ./simple-quiz
- csv - Input a filename for the questions and answers. Use the format question,answer per line
- limit - Number of seconds for a time limit to complete the quiz. Omit if you don't want a time limit
Example: ./simple-quiz -csv="questions.csv" -limit=10
Based on the exercises on Gophercises