A snake like rule engine...
Following on the java and squeak rule engine, a short python version. So short, the "engine" is little more than a wrapper around an array with a simple check method:
class RuleSet:
def __init__(self):
self.rules = []
def a
Comments (0) . Thursday, 11 August 2005