Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 function f(k) {
2 function g(j) {
3 return j + k;
4 }
5 return g;
6 }
7
8 g = f(10);
9 var ans = '';
10 for (var i = 0; i < 5; ++i) {
11 ans += g(i) + ',';
12 }
13
14 assertEq(ans, '10,11,12,13,14,');
15