diff --git a/examples/HelloWorld.R b/examples/HelloWorld.R new file mode 100644 index 0000000..25c194a --- /dev/null +++ b/examples/HelloWorld.R @@ -0,0 +1,3 @@ +# R program to print Hello World +aString = "Hello World!" +print ( aString) diff --git a/swarmlab/Makefile b/swarmlab/Makefile new file mode 100644 index 0000000..2916482 --- /dev/null +++ b/swarmlab/Makefile @@ -0,0 +1,10 @@ +all: hello + +hello: + + Rscript ../examples/HelloWorld.R + + + + +