2020-12-16 18:42:00 +01:00

10 lines
92 B
JavaScript

if (true) {
function* run() {
return true;
}
}
function test() {
return run();
}