From 014acabf02f0069323f6452bac083d236a1551ae Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 4 May 2020 23:02:04 +0800 Subject: [PATCH] add a interpreter pattern item --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22589ec..a2e7684 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ A curated collection of idiomatic design & application patterns for Go language. | [Strategy](/behavioral/strategy.md) | Enables an algorithm's behavior to be selected at runtime | ✔ | | [Template](/behavioral/template/main.go) | Defines a skeleton class which defers some methods to subclasses | ✔ | | [Visitor](/behavioral/visitor/main.go) | Separates an algorithm from an object on which it operates | ✔ | - +| [Visitor](/behavioral/interpreter/interpreter.md) | interpret your own language or composed commands | ✘ | ## Synchronization Patterns | Pattern | Description | Status |