Quizzle is a basic study project, which consists of five mini-games that are called by short commands from the terminal.
$ python3 -m venv venv
$ source venv/bin/activate
$ git clone https://github.com/himetik/quizzle.git # clone repo.
$ cd quizzle # change the directory
$ pip install . # install game
$ quizzle-even # Answer "yes" if the number is even, otherwise answer "no".
$ quizzle-calc # Enter the calculation result.
$ quizzle-gcd # Enter the greatest common divisor of two numbers.
$ quizzle-progression # Indicate the missing number in the given sequences.
$ quizzle-prime # Write "yes" if the shown number is prime, otherwise enter "no".