add quiz on different squares
authordaniel watson <ozzloy@gmail.com>
Thu, 12 May 2016 21:09:44 +0000 (14:09 -0700)
committerdaniel watson <ozzloy@gmail.com>
Sat, 11 Jun 2016 05:00:23 +0000 (22:00 -0700)
curriculum/square.scad
curriculum/square.scm
curriculum/square1.scad [new file with mode: 0644]
curriculum/square2.scad [new file with mode: 0644]
curriculum/square3.scad [new file with mode: 0644]

index 5e44b7d83f663039fefa70665bbf115bd8afd974..c8ea7fdae5dd9c54153f1e1b0b30936e5c564797 100644 (file)
@@ -1 +1,21 @@
+// tldr; AGPLv3+
+// copyright info at bottom
 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/>.
+*/
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/>.
diff --git a/curriculum/square1.scad b/curriculum/square1.scad
new file mode 100644 (file)
index 0000000..8c0bb87
--- /dev/null
@@ -0,0 +1,21 @@
+// tldr; AGPLv3+
+// copyright info at bottom
+square(1);
+/*
+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/>.
+*/
diff --git a/curriculum/square2.scad b/curriculum/square2.scad
new file mode 100644 (file)
index 0000000..25c47c6
--- /dev/null
@@ -0,0 +1,21 @@
+// tldr; AGPLv3+
+// copyright info at bottom
+square(2);
+/*
+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/>.
+*/
diff --git a/curriculum/square3.scad b/curriculum/square3.scad
new file mode 100644 (file)
index 0000000..daa2fa2
--- /dev/null
@@ -0,0 +1,21 @@
+// tldr; AGPLv3+
+// copyright info at bottom
+square(3);
+/*
+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/>.
+*/