add quiz on different squares
[challenge-bot] / curriculum / square.scm
index d7d8852a05238a43743dd69618219454752c1798..7d08b9a1ea4bfe8188b3c649c31c39e6244cbbf2 100644 (file)
@@ -1,3 +1,5 @@
+;; tldr; AGPLv3+
+;; copyright info at bottom
 (use-modules (skribilo source c))
 
 (document
   (p [how big do you expect this square to be?])
   (figure
    :legend "square(3);"
-   (image :file "square3.png" :height 500))))
+   (image :file "square3.png" :height 500)))
+ (chapter
+  :title [quiz on square 1 2 3]
+  :number #f
+  (section
+   :title [questions for simplest square]
+   (p [what's the code for the simplest square?])
+   (p [where is the bottom right corner of the simplest square?]))))
+
+;; Copyright 2016 daniel watson
+
+;; This file is part of challenge-bot.
+
+;; challenge-bot is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU Affero General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+
+;; challenge-bot is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU Affero General Public License for more details.
+
+;; You should have received a copy of the GNU Affero General Public
+;; License along with challenge-bot.  If not, see
+;; <http://www.gnu.org/licenses/>.