From 625c9ce5ccd0133d70636a08346580e8bf357345 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Sun, 28 Jun 2026 11:23:48 -0500 Subject: [PATCH] feat: add more questions --- question_repository.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/question_repository.cpp b/question_repository.cpp index f851046..7a0cafb 100644 --- a/question_repository.cpp +++ b/question_repository.cpp @@ -1,9 +1,15 @@ #include "question_repository.hpp" // TODO: Implement an external provider for questions. -static std::vector questions - = { "What does your morning routine look like?", - "What do you like the most about your job?" }; +static std::vector questions = { "What does your morning routine look like?", + "What do you like the most about your job?", + "What is life in your country like?", + "What are your hobbies?", + "What do you do for a living?", + "Why are you learning X language?", + "Where have you traveled to?", + "What is your favourite food?", + "What kind of books do you like reading?" }; std::vector InMemoryQuestionRepository::list_questions() noexcept { -- 2.43.0