diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-02-09 15:32:37 -0500 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-02-09 15:32:37 -0500 |
| commit | 36cf3a0f0604ef43ce838ff6e9a7fc4e7c299522 (patch) | |
| tree | 6e4e9ea9015f72da5670ad8f733d51cde77211cf /RGens/data/sample-grammars/numbers.gram | |
| parent | 26017da6c2e135f8a41dc7dbd805d7bdce518219 (diff) | |
Lots of additional data
Diffstat (limited to 'RGens/data/sample-grammars/numbers.gram')
| -rw-r--r-- | RGens/data/sample-grammars/numbers.gram | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/RGens/data/sample-grammars/numbers.gram b/RGens/data/sample-grammars/numbers.gram new file mode 100644 index 0000000..86be953 --- /dev/null +++ b/RGens/data/sample-grammars/numbers.gram @@ -0,0 +1,19 @@ +[small-number] [actual+small-number] + +[medium-number] [actual+medium-number] + +[zipcode] [actual+zipcode] + +pragma export-rule [small-number] +pragma export-rule [medium-number] +pragma export-rule [zipcode] + +[actual+small-number] [digit-nozero] + [digit-nozero] [digit] + [digit-nozero] [digit] [digit] + +[actual+medium-number] [digit-nozero] [digit] [digit] + [digit-nozero] [digit] [digit] [digit] + [digit-nozero] [digit] [digit] [digit] [digit] + +[actual+zipcode] [digit] [digit] [digit] [digit] [digit] |
