From a582d099cb3711c21c09f4dfe7b1da5c33bb2a39 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Mon, 11 Sep 2023 23:34:22 -0700 Subject: [PATCH] setting up typescript file to run with bun --- Websites/JandF/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Websites/JandF/index.ts b/Websites/JandF/index.ts index 1bc795d..49c2b83 100644 --- a/Websites/JandF/index.ts +++ b/Websites/JandF/index.ts @@ -1,2 +1,10 @@ console.warn("This is a warning"); +console.warn("This is also a console output"); + +var number = 5; +console.log(number); + +var a,b = 3; +var c = 5; +console.log(a);