From 4ab3facc0caed989e6924f99e0705b9a5951db92 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E3=81=93=E3=81=AE=E4=B8=AD=E4=BA=8C=E7=97=85=E3=81=AB?=
=?UTF-8?q?=E7=88=86=E7=84=94=E3=82=92=EF=BC=81?=
R liked vectorized language
implements on .NET clr environment for the bioinformatics data analysis.
+
+
+#' print hello world
+const hello = function(word) {
+ print(`hello ${word}!`);
+}
+
+hello(["world", "R# language"]);
+# [1] "hello world!" "hello R# language!"
+
+
+