You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem was that { $a:tactic; all_goals $b:tactic }, with curly braces, was explicitly requiring it to close the goals. Removing them solved the problem.
Page 60 suggests that
a and_then b
behaves the same asa <;> b
, but this is not the case whenb
does not close all goals;For example, if the second tactic is skip. The
<;>
version compiles just fine.But, the
and_then
version complains about unsolved goals.I don't readily see how to fix this while keeping it as a simple substitution-macro, but maybe this discrepancy should be pointed out in the text.
The text was updated successfully, but these errors were encountered: