package registrynew type Process interface { Get() (Expr, error) Step(int) bool } type Engine interface { Load(Expr) Process Name() string InRepr() string }