aboutsummaryrefslogtreecommitdiff
path: root/robot/basic-run.el
blob: 8ce43466e19e51f92ea41c5fdca06c16411c4674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(load-file "robot/robot.el")
(load-file "org-drill.el")

(defun org-drill-do-drill ()
  (copy "basic-run.org" "basic-run-copy.org")
  (find "basic-run-copy.org")

  (org-drill)
  (set-buffer-modified-p nil)
  (kill-buffer))

(org-drill-do-drill)

(message "First drill complete")

(setq org-drill-presentation-prompt-with-typing t)

(org-drill-do-drill)

(robot-check-cards-seen-and-die 6)