2014-11-30 21:16:01 -08:00
|
|
|
import logic
|
2014-09-04 14:21:03 -07:00
|
|
|
open tactic
|
|
|
|
|
2015-04-27 17:46:13 -07:00
|
|
|
notation `(` h `|` r:(foldl `|` (e r, tactic.or_else r e) h) `)` := r
|
|
|
|
infixl `;`:15 := tactic.and_then
|
|
|
|
|
2014-09-04 16:36:06 -07:00
|
|
|
definition mytac := apply @and.intro; apply @eq.refl
|
2014-09-04 14:21:03 -07:00
|
|
|
|
|
|
|
check @mytac
|