9 lines
199 B
Text
9 lines
199 B
Text
import logic
|
|
|
|
constant f : num → num
|
|
constant g : num → num
|
|
notation a `+++` := f a
|
|
notation [parsing-only] a `***` := g a
|
|
check 10 +++
|
|
check 10 ***
|
|
check Type.{8} -- Type₊ should not be used
|