From 7f9fa836ee6310e4941bf1d312f63c72688ca0bf Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Tue, 15 Jan 2019 10:15:48 -0800 Subject: [PATCH] add missing comment --- script/variable.go | 1 + 1 file changed, 1 insertion(+) diff --git a/script/variable.go b/script/variable.go index 41ded73..51c7a84 100644 --- a/script/variable.go +++ b/script/variable.go @@ -12,6 +12,7 @@ type Variable struct { value *objects.Object } +// NewVariable creates a Variable. func NewVariable(name string, value interface{}) (*Variable, error) { obj, err := interfaceToObject(value) if err != nil {