
4 Aug
2016
4 Aug
'16
10:45 p.m.
On Fri, Aug 5, 2016 at 3:07 AM, אלעזר elazarg@gmail.com wrote:
Just wanted to note that the typo
lamda: int
Becomes syntactically correct. Maybe there are other similar problems.
True, but the correct version "lambda: int" wouldn't appear on a line on its own, creating an anonymous function and then abandoning it. It'll normally appear in a function call or similar, where you wouldn't be allowed to type-declare a new variable.
ChrisA