summaryrefslogtreecommitdiff
path: root/grammars/numerals/ResDecimal.gf
diff options
context:
space:
mode:
Diffstat (limited to 'grammars/numerals/ResDecimal.gf')
-rw-r--r--grammars/numerals/ResDecimal.gf7
1 files changed, 7 insertions, 0 deletions
diff --git a/grammars/numerals/ResDecimal.gf b/grammars/numerals/ResDecimal.gf
new file mode 100644
index 000000000..4b04cb921
--- /dev/null
+++ b/grammars/numerals/ResDecimal.gf
@@ -0,0 +1,7 @@
+resource ResDecimal = {
+
+param Zeros = noz | zz ;
+
+oper ss : Str -> {s : Str} = \s -> {s = s} ;
+oper mkz : Str -> {s : Zeros => Str} = \s -> {s = table {_ => s}} ;
+}