mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
16 lines
209 B
JavaScript
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();
|