mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 17:27:59 -05:00
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
// Generated by CoffeeScript 1.10.0
|
|
var perfectSquares;
|
|
|
|
perfectSquares = function*() {
|
|
var num;
|
|
num = 0;
|
|
while (true) {
|
|
num += 1;
|
|
(yield num * num);
|
|
}
|
|
};
|
|
|
|
window.ps || (window.ps = perfectSquares());
|