98897b467d
In expression code blocks, we do not have to write a "return". After this commit, the argument of an apply command is a Lua expression instead of a Lua block of code. That is, we can now write apply (** REPEAT(ORELSE(imp_tactic, conj_tactic, conj_hyp_tactic, assumption_tactic)) **) instead of apply (** return REPEAT(ORELSE(imp_tactic, conj_tactic, conj_hyp_tactic, assumption_tactic)) **) Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
No EOL
251 B
Text
8 lines
No EOL
251 B
Text
Variables p q r : Bool
|
|
|
|
Theorem T1 : p => p /\ q => r => q /\ r /\ p := _.
|
|
apply (** REPEAT(ORELSE(imp_tactic, conj_tactic, conj_hyp_tactic, assumption_tactic)) **)
|
|
done
|
|
|
|
(* Display proof term generated by previous tactic *)
|
|
Show Environment 1 |