5eaf04518b
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
20 lines
No EOL
422 B
Text
20 lines
No EOL
422 B
Text
definition Prop [inline] : Type.{1} := Type.{0}
|
|
section
|
|
variable N : Type.{1}
|
|
variables a b c : N
|
|
variable and : Prop → Prop → Prop
|
|
infixr `∧`:35 := and
|
|
variable le : N → N → Prop
|
|
variable lt : N → N → Prop
|
|
precedence `≤`:50
|
|
precedence `<`:50
|
|
infixl ≤ := le
|
|
infixl < := lt
|
|
check a ≤ b
|
|
definition T : Prop := a ≤ b
|
|
check T
|
|
end
|
|
check T
|
|
(*
|
|
print(get_env():find("T"):value())
|
|
*) |