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

[[fields]]
# name of the field
name = "Who is there?"
# array of possible answers
answers = [ "A", "B", "C", "D"]
# index (starting at 0) of the correct answer
correct = 0

[[fields]]
name = "What is there?"
answers = [ "A", "B", "C", "D"]
correct = 0