mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
16 lines
148 B
Plaintext
16 lines
148 B
Plaintext
|
|
-- the example 4.1 from Ljunglöf (2004, page 82)
|
|
|
|
abstract CopyMorphismAbs = {
|
|
|
|
cat S; A;
|
|
|
|
fun
|
|
|
|
f : A -> S;
|
|
g : A -> A -> A;
|
|
ac : A;
|
|
bd : A;
|
|
|
|
}
|