7 lines
150 B
Text
7 lines
150 B
Text
structure point (A : Type) (B : Type) :=
|
|
mk :: (x : A) (y : B)
|
|
|
|
structure point2 (A : Type) (B : Type) extends point A B :=
|
|
make
|
|
|
|
print prefix point2
|