orangeduck / BuildYourOwnLisp

Learn C and build your own programming language in under 1000 lines of code!
http://www.buildyourownlisp.com/
Other
2.9k stars 394 forks source link

Chapter 15 #61

Closed flyrain closed 10 years ago

flyrain commented 10 years ago

line 360 and 361,

(def {curry} {unpack})

curry should be a symbol, not a Q-expression. So it should be

(def {curry} unpack)

As well as uncurry.

line 390, “Minimum of Arguments” -> “Maximun of Arguments”

orangeduck commented 10 years ago

Thanks! Should be fixed in d12dbeda9ada64dd50df003b5ce0b9ece5cf9a55

flyrain commented 10 years ago

Thank you.