base production refactor

This commit is contained in:
2018-10-28 03:55:17 -04:00
parent 8fc9bb237a
commit a73a7ada27
6 changed files with 138 additions and 138 deletions

View File

@@ -1,7 +1,17 @@
::: => {
~ "\g<0>"
/[aeiou]/ ::= '_'
/[^aeiou_\W]/ ::= ':'
~ '\g<0>'
'\g<0>_'=> {
/0_/ ::= '1'
/01_/ ::= '10'
/11_/ ::= '1_0'
/^1_/ ::= '10'
}
}
/_:/ ::= [~ "a" ":"]
}
::: => {
~ '\g<0>'
/[aei]/ ::= ~ 'aei'
/[ou]/ ::= ~ 'ou'
/[aeiou]/ ::= '_'
}