Go Concepts - Limitations

From NovaOrdis Knowledge Base
Revision as of 09:44, 4 April 2016 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Limitations

Metaprogramming

Go is not appropriate for metaprogramming or creating domain specific languages. Evaluating code at runtime is not easy.

Reflection

Go supports limited reflection.

Need to Compile on Different Platform

Unlike Java, we need to compile binary executable on target platforms.