quick-quiz-generator 0.1.0

generate interactive, console-based quizzes blazingly fast
quick-quiz-generator-0.1.0 is not a library.

quick-quiz-generator

qqg is a rust program designed to let you create interactive console-based quizzes blazingly fast.

features

  • simple and portable text format for structured quizzes
  • free and open-source, under GPL-3.0-or-later
  • fast, handmade parser with robust lexing
  • no-dependencies, only std

install

using cargo, you can run:

cargo install quick-quiz-generator

usage

qqg parses .qq files, and runs them as quizzes. to get started, create a file test.qq and write:

title "quick-quiz-generator" by "sarkar-segfault"

question "what is 1 + 1?" {
	answer {
  	"2",  
  },
	value 1,
}

run it using the following command:

qqg -i test.qq

for some sample quizzes, see samples/.

commands

run the following command for help about the cli:

qqg -h