Files
2025-02-28 13:27:28 +01:00

7 lines
76 B
JavaScript

function* foo(){
var index = 0;
while(index <= 2)
yield index++;
}