mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
120 B
JavaScript
14 lines
120 B
JavaScript
'use strict';
|
|
|
|
function run(f) {
|
|
f();
|
|
}
|
|
|
|
if (true) {
|
|
run(main);
|
|
|
|
function main() {
|
|
console.log("Yay!");
|
|
}
|
|
}
|