diff --git a/behavioral/interpreter/Album.go b/behavioral/interpreter/Album.go new file mode 100644 index 0000000..4ddec8d --- /dev/null +++ b/behavioral/interpreter/Album.go @@ -0,0 +1,12 @@ +/** + * @author : Jagepard + * @license https://mit-license.org/ MIT + */ + +package main + +// Album is ... +type Album struct { + name string + author string +}