From fa5d5f11fda05d6b0a6b67bb92896cde182c1c80 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Tue, 29 Nov 2022 23:12:31 +0000 Subject: [PATCH] tweak: add four languages --- R/hello-world.R | 1 + js/hello-world.js | 1 + python/hello-world.py | 1 + 3 files changed, 3 insertions(+) create mode 100644 R/hello-world.R create mode 100644 js/hello-world.js create mode 100644 python/hello-world.py diff --git a/R/hello-world.R b/R/hello-world.R new file mode 100644 index 00000000..6d95fe97 --- /dev/null +++ b/R/hello-world.R @@ -0,0 +1 @@ +print("Hello world") \ No newline at end of file diff --git a/js/hello-world.js b/js/hello-world.js new file mode 100644 index 00000000..e4f2d196 --- /dev/null +++ b/js/hello-world.js @@ -0,0 +1 @@ +console.log("Hello world") \ No newline at end of file diff --git a/python/hello-world.py b/python/hello-world.py new file mode 100644 index 00000000..442659b8 --- /dev/null +++ b/python/hello-world.py @@ -0,0 +1 @@ +print("Hello world!") \ No newline at end of file