8c956280d9
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
11 lines
227 B
Text
11 lines
227 B
Text
import Int.
|
|
variable f {A : Type} : A -> A -> A
|
|
infixl 65 + : f
|
|
print true + false
|
|
print 10 + 20
|
|
print 10 + (- 20)
|
|
set::option pp::notation false
|
|
set::option pp::coercion true
|
|
print true + false
|
|
print 10 + 20
|
|
print 10 + (- 20)
|