e2c41fca75
The idea is to make it uniform with the syntax for defining local attributes.
11 lines
161 B
Text
11 lines
161 B
Text
import logic
|
|
|
|
section
|
|
variables {A : Type}
|
|
variables f : A → A → A
|
|
local infixl `+++`:10 := f
|
|
|
|
variables a b c : A
|
|
check f a b
|
|
check a +++ b
|
|
end
|