> x = function() { print (1);var d = yield y; print(d); };(function () {print(1);var d = (yield y);print(d);})> gen = x()({})> gen.next()12> gen.send("abc")abcERROR: Could not evaluate script: exception `[object StopIteration]'