a23118d357
This addresses the first part of issue #461 We still need support for tactic definitions
9 lines
197 B
Text
9 lines
197 B
Text
import logic
|
|
open tactic
|
|
|
|
notation `(` h `|` r:(foldl `|` (e r, tactic.or_else r e) h) `)` := r
|
|
infixl `;`:15 := tactic.and_then
|
|
|
|
definition mytac := apply @and.intro; apply @eq.refl
|
|
|
|
check @mytac
|