Fixed order in which tactic scripts are printed
This commit is contained in:
parent
1bb886cfbb
commit
13d3016c85
|
@ -80,7 +80,7 @@
|
||||||
[(quit)
|
[(quit)
|
||||||
(begin
|
(begin
|
||||||
(printf "Your tactic script:~n")
|
(printf "Your tactic script:~n")
|
||||||
(pretty-print (map syntax->datum cmds))
|
(pretty-print (reverse (map syntax->datum cmds)))
|
||||||
(newline)
|
(newline)
|
||||||
ps)]
|
ps)]
|
||||||
;; TODO: Maybe use (read-eval-print-loop) and its
|
;; TODO: Maybe use (read-eval-print-loop) and its
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
(if (< (random 10) 4)
|
(if (< (random 10) 4)
|
||||||
(begin
|
(begin
|
||||||
(printf "Don't forget this. It took you long enough:~n")
|
(printf "Don't forget this. It took you long enough:~n")
|
||||||
(pretty-print (map syntax->datum cmds))
|
(pretty-print (reverse (map syntax->datum cmds)))
|
||||||
(newline)
|
(newline)
|
||||||
ps)
|
ps)
|
||||||
(begin
|
(begin
|
||||||
|
|
Loading…
Reference in New Issue
Block a user