2014-01-01 21:52:25 +00:00
|
|
|
Import Int.
|
2013-12-30 21:35:37 +00:00
|
|
|
|
2014-01-05 19:03:35 +00:00
|
|
|
print 10 = 20
|
2013-12-10 20:11:04 +00:00
|
|
|
Variable f : Int -> Int -> Int
|
|
|
|
Variable g : Int -> Int -> Int -> Int
|
|
|
|
Notation 10 _ ++ _ : f
|
|
|
|
Notation 10 _ ++ _ : g
|
2013-12-19 05:18:45 +00:00
|
|
|
SetOption pp::implicit true
|
|
|
|
SetOption pp::notation false
|
2014-01-05 19:03:35 +00:00
|
|
|
print (10 ++ 20)
|
|
|
|
print (10 ++ 20) 10
|