From cca554b4ec0a68fb6e0bbf56746ecf7d31c02e35 Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 11 May 2020 21:17:52 +0800 Subject: [PATCH] Create main.go --- behavioral/interpreter/main.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 behavioral/interpreter/main.go diff --git a/behavioral/interpreter/main.go b/behavioral/interpreter/main.go new file mode 100644 index 0000000..1967757 --- /dev/null +++ b/behavioral/interpreter/main.go @@ -0,0 +1,17 @@ +/** + * @author : Jagepard + * @license https://mit-license.org/ MIT + */ + +package main + +func main() { + interpreter := Interpreter{registry: make(map[int]Album)} + + interpreter.addAlbumToRegistry(Album{name: "Untouchables", author: "Korn"}) + interpreter.addAlbumToRegistry(Album{name: "Adrenaline", author: "Deftones"}) + interpreter.interpret("album 2") + interpreter.interpret("album author 2") + interpreter.interpret("album author 1") + interpreter.interpret("author 1") +}