AST ADT chicken egg problem

From apm
Revision as of 12:32, 27 December 2024 by Apm (Talk | contribs) (basic page but still missing the essence)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
This article is a stub. It needs to be expanded.
  • AST algebraic syntax tree
  • ADT algebraic data type

ADT modeling AST

Lambda calculus, it's variants, and
in general formal systems (core of many programming languages)
are usually specified in Bakus Naur form.
This is basically a specific algebraic data type (ADT) with both sum types and product types.
– sum type for the various options a term can take
– product types for the components a term must have

AST modeling ADT

Better programming languages need algebraic datatypes.
Even in basic untyped lambda calculus there are simple embeddings for sum types and product types.

The chicken egg problem

(wiki-TODO: Main point of the topic is still missing here)

Related

External links