57c0006916
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
No EOL
279 B
Text
12 lines
No EOL
279 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
|
|
set_option lean::pp::notation false
|
|
print true ++ false ++ true
|
|
variable a : N
|
|
variable b : N
|
|
print a ++ b ++ a
|
|
print true ++ false ++ false |