mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-17 08:49:31 -06:00
10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
cat S; E;
|
|
|
|
fun s : S ;
|
|
fun es : E -> S -> S ;
|
|
fun e : E ;
|
|
|
|
lin s = { s = "s" } ;
|
|
lin es e s = { s = e.s ++ s.s } ;
|
|
lin e = { s = [] } ;
|