6 lines
79 B
JavaScript
6 lines
79 B
JavaScript
// Error: :4:9: Semi-colon expected
|
|
|
|
function simpleGenerator() {
|
|
yield 1;
|
|
}
|