renamed tests

This commit is contained in:
krangelov
2021-09-24 15:41:05 +02:00
parent ac304ccd7c
commit 886592f345
7 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
resource variant = {
oper
hello = r.f "hello";
r = { f:Str->Str = (id|dup) };
id : Str->Str = \ s -> s;
dup : Str->Str = \ s -> s++s;
}