http://blog.labix.org/2013/07/16/twik-a-tiny-language-for-go
Also, the type-switch on interface {} is ugly.
Consider how an AST looks like in Haskell:
data AST = LiteralInt Int | LiteralFloat Float | List [AST] ...
case ast of LiteralInt int -> ... LiteralFloat float -> ... List nodes -> ...
Also, if you add an annotation to each AST element (e.g: inferred types), you can very easily and safely map over them, etc.
Well, not that small, i guess :-)