From f2c9811fd8cbb205fad68952ebc1ba5d310f148d Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Thu, 9 Oct 2014 19:14:43 -0500 Subject: go: add hash-map support. --- go/src/step7_quote/step7_quote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'go/src/step7_quote') diff --git a/go/src/step7_quote/step7_quote.go b/go/src/step7_quote/step7_quote.go index 68c2a85..0877bbb 100644 --- a/go/src/step7_quote/step7_quote.go +++ b/go/src/step7_quote/step7_quote.go @@ -71,7 +71,7 @@ func eval_ast(ast MalType, env EnvType) (MalType, error) { lst = append(lst, exp) } return Vector{lst}, nil - } else if Hash_Map_Q(ast) { + } else if HashMap_Q(ast) { m := ast.(map[string]MalType) new_hm := map[string]MalType{} for k, v := range m { -- cgit v1.2.3