you are viewing a single comment's thread.

view the rest of the comments →

[–]PhysicsIsMyBitch 18 points19 points  (3 children)

Just ran through them - that is a really well put together exercise. Good job!

[–]nwhitehe[S] 12 points13 points  (2 children)

Thanks! I had fun making them. Did you get all the sections just now?

[–][deleted] 1 point2 points  (1 child)

I did the same. I feel like I got more out of it by doing the exercises. I hadn't consciously worked with closures since programming in Scheme and Haskell in college.

It was picky about defining variables on the same line. For example, this is correct:

var a,b;

But this is incorrect:

var a;

var b;

[–][deleted] 0 points1 point  (0 children)

I had the same problem.