4

I would like to have a good conceptual understanding of the semantics of programming languages: operational-, denotational-, axiomatic-, categorical-.

Is there a good (standard?) textbook for this?

user56834
  • 4,244
  • 5
  • 21
  • 35

1 Answers1

5

There are many depending on where you want to start and what exactly you want. Usually textbook start with giving semantics to the While or IMP language and then give references to semantics of lambda calculus (typed untyped) unless you are reading Gunter. I am listing down a few below that I have referenced a number of times:

  1. Operational Denotational and Axiomatic:

    a. Formal Semantics of Programming languages by Wynskell

    b. Programming Language Foundations by Stump

    c. Theories of programming languages by Reynolds

  2. Denotational semantics: Denotational Semantics by Stoy

  3. Denotational and Categorical semantics: Semantics of Programming languages by Gunter
  4. Categorical semantics: Category theory for computing science by Barr and Wells
  5. Mostly operational semantics (may be with types involved):

    a. Types and Programming languages

    b. Semantics Enginnering with PLT redux

See also this question and this question on stackexchange. and this further reading section of wikipedia article

Apoorv
  • 659
  • 6
  • 15