summaryrefslogtreecommitdiff
path: root/src/thue/thue.cr
blob: 9c22b9661ce8e44303a595252f11f27d45603702 (plain)
1
2
3
4
5
6
7
module Thue
  # Allow matching empty patterns, handle during parsing
  R_NORMAL_RULE = /^(.*)::=(.*)$/
  R_INPUT_RULE = /^(.*)::=:::$/
  R_OUTPUT_RULE = /^(.*)::=~(.*)$/
end