Go Concepts - Limitations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Limitations= ==Metaprogramming== Go is not appropriate for metaprogramming or creating domain specific languages. Evaluating code at runtime...")
 
 
(7 intermediate revisions by the same user not shown)
Line 3: Line 3:
==Metaprogramming==
==Metaprogramming==


Go is not appropriate for [[Programming#Metaprogramming|metaprogramming]] or creating domain specific languages. Evaluating code at runtime is not easy.
Go is not appropriate for [[Programming_Languages_Concepts#Metaprogramming|metaprogramming]] or creating domain specific languages. Evaluating code at runtime is not easy.


==Reflection==
==Reflection==


Go supports limited reflection.
Go supports limited reflection.

Latest revision as of 17:03, 9 August 2024

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.