mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-04-11 03:00:13 -04:00
14 lines
215 B
JavaScript
14 lines
215 B
JavaScript
// Generated by CoffeeScript 1.11.1
|
|
var perfectSquares;
|
|
|
|
perfectSquares = function*() {
|
|
var num;
|
|
num = 0;
|
|
while (true) {
|
|
num += 1;
|
|
yield num * num;
|
|
}
|
|
};
|
|
|
|
window.ps || (window.ps = perfectSquares());
|