time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

commit fa5d5f11fda05d6b0a6b67bb92896cde182c1c80
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Tue, 29 Nov 2022 23:12:31 +0000

tweak: add four languages

Diffstat:
AR/hello-world.R | 2++
Ajs/hello-world.js | 2++
Apython/hello-world.py | 2++
3 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/R/hello-world.R 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 @@ -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 @@ -0,0 +1 @@ +print("Hello world!") +\ No newline at end of file