1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/cli/tests/inspector_coverage.js
2020-04-14 20:09:50 +02:00

16 lines
209 B
JavaScript

function a() {
console.log("hello a");
}
function b() {
console.log("hello b");
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
function c() {
console.log("hello c");
}
a();
b();
b();