munificent / craftinginterpreters

Repository for the book "Crafting Interpreters"
http://www.craftinginterpreters.com/
Other
8.84k stars 1.04k forks source link

Miswording: Section 3.2.1 - Dynamic typing (Aside) #422

Closed ghost closed 5 years ago

ghost commented 5 years ago

*In sentence: After all, the two languages we’ll be using to implement Lox are both statically typed.

*Correction: Type checking. After all, the two languages we’ll be using to implement Lox are both dynamically typed.

merl111 commented 5 years ago

Lox is implemented in Java and C, both are statically typed not dynamically. So the original sentence seems to be correct.

ghost commented 5 years ago

Correct. I misread the sentence. I thought it was referring to Lox implementations.