Often when I'm coding I like to see how things work or what certain expressions yield at a specific area in my code base.
Most other languages provide tools to evaluate new custom expressions at runtime. Golang doesn't seem to provide this yet, or at least with the tools I've used (sublime, goclipse).
Currently I'm solving this by using Println or recreating a small test environment that sets up just what I need to run some on the fly expressions, but I'm figuring there must be a better way...
I could use something like play.golang.org, but often I have a lot of dependencies or it would require a lot of copy and pasting to make my simple trial-and-error code work.