diff --git a/src/Main.elm b/src/Main.elm index ea61e5134b575931a3494525ca3e6b1441cd323e..c0549ae1eb4ee1d84a7f55a2dda1432173f16b8a 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -124,6 +124,30 @@ exampleQuiz = , d = { text = "Genuine Novel Upstanding", correct = False } } } + , { question = "What is Richard Stallman's second forename?" + , answers = + { a = { text = "Michael", correct = False } + , b = { text = "Matthew", correct = True } + , c = { text = "Martin", correct = False } + , d = { text = "Mark", correct = False } + } + } + , { question = "What is not a real linux distribution?" + , answers = + { a = { text = "Kubuntu", correct = False } + , b = { text = "Lubuntu", correct = False } + , c = { text = "Xubuntu", correct = False } + , d = { text = "Qubuntu", correct = True } + } + } + , { question = "What does GIMP stand for?" + , answers = + { a = { text = "Git In My Pocket", correct = False } + , b = { text = "GNU Image Manipulation Program", correct = True } + , c = { text = "Gnome Integrated Mail Program", correct = False } + , d = { text = "Green Is My Pepper", correct = True } + } + } ]