aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-vscode/example/hello.js
blob: 895e547904490884bd49898edde5b4d75392d539 (plain) (blame)
1
2
3
4
5
6
7
8
console.log("HELLO");
console.log("HELLO 2");
console.log("HELLO 3");
a();

function a() {
  console.log("HELLO 4");
}