4ba097a141
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
No EOL
278 B
Text
12 lines
No EOL
278 B
Text
variable N : Type
|
|
variable f : Bool -> Bool -> Bool
|
|
variable g : N -> N -> N
|
|
infixl 10 ++ : f
|
|
infixl 10 ++ : g
|
|
print true ++ false ++ true
|
|
setoption lean::pp::notation false
|
|
print true ++ false ++ true
|
|
variable a : N
|
|
variable b : N
|
|
print a ++ b ++ a
|
|
print true ++ false ++ false |