diff options
Diffstat (limited to 'packages/bun-vscode/example/hello.js')
-rw-r--r-- | packages/bun-vscode/example/hello.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/bun-vscode/example/hello.js b/packages/bun-vscode/example/hello.js new file mode 100644 index 000000000..895e54790 --- /dev/null +++ b/packages/bun-vscode/example/hello.js @@ -0,0 +1,8 @@ +console.log("HELLO"); +console.log("HELLO 2"); +console.log("HELLO 3"); +a(); + +function a() { + console.log("HELLO 4"); +} |