summaryrefslogtreecommitdiff
path: root/tests/testdata/subdir/shebang_file.js
blob: 1c81be31cb7b1af127843ba43412f1130f424c82 (plain)
1
2
3
4
5
#!/usr/bin/env -S deno run --allow-read

for (const item of Deno.readDirSync(".")) {
  console.log(item.name);
}