mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
8 lines
155 B
Plaintext
8 lines
155 B
Plaintext
resource Variants = {
|
|
oper
|
|
hello = r.f "hello";
|
|
r = { f:Str->Str = (id|dup) };
|
|
id : Str->Str = \ s -> s;
|
|
dup : Str->Str = \ s -> s++s;
|
|
}
|