zettoIT ARS is a lightweight open source audience response system built with rust.
A quiz can be created by uploading a toml-encoded Quizfile. A basic example is listed below:
# number of seconds to wait before showing results
wait_for = 15
[[questions]]
# type of the question (currently only single_choice)
type = "single_choice"
# name of the question
name = "Who is there?"
# array of possible answers
answers = [ "A", "B", "C", "D"]
# index (starting at 0) of the correct answer
correct = 0
[[questions]]
type = "single_choice"
name = "What is there?"
answers = [ "A", "B", "C", "D"]
correct = 0