commit fa5d5f11fda05d6b0a6b67bb92896cde182c1c80 Author: NunoSempere Date: Tue Nov 29 23:12:31 2022 +0000 tweak: add four languages 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