mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
(for (year of years) if (year > 2000) year);
|
|
year;
|
|
(for (i of numbers) for (j of letters) i+j);
|
|
(for (i of numbers) for (j of letters) if (i<j) i+j);
|
|
(x.p for (x in xs));
|
|
(x.p for each (x in xs));
|