mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 11:19:32 -06:00
10 lines
199 B
Plaintext
10 lines
199 B
Plaintext
concrete BindCnc of Bind = open Prelude in {
|
|
lincat
|
|
S = Str ;
|
|
F = { s : Str } ;
|
|
lin
|
|
f1 = { s = "hello the" ++ BIND ++ "re" } ;
|
|
f2 = { s = "good" ++ "bye" } ;
|
|
FtoS f = f.s ;
|
|
}
|