From 37c5c015785e0f2ba17d367fcbc166c16a8ae755 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jonas=20Sch=C3=BCrmann?= <jonasschuermann@aol.de>
Date: Mon, 1 Jul 2019 16:36:33 +0200
Subject: [PATCH] More questions for the example quiz

---
 src/Main.elm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/src/Main.elm b/src/Main.elm
index ea61e51..c0549ae 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 }
+            }
+      }
     ]
 
 
-- 
GitLab