aboutsummaryrefslogtreecommitdiff
path: root/samples/R
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2012-07-23 15:52:49 -0500
committerJoshua Peek <josh@joshpeek.com>2012-07-23 15:52:49 -0500
commit7b6caa0f6c7603aabb5e6ed657e24aaddbeafc78 (patch)
treeec0522eae75bb04ae73d28ae3f599682a2bfdaeb /samples/R
parent314f0e485227915931db361be14d308a210bedea (diff)
Rename samples subdirectories
Diffstat (limited to 'samples/R')
-rw-r--r--samples/R/hello-r.R4
1 files changed, 4 insertions, 0 deletions
diff --git a/samples/R/hello-r.R b/samples/R/hello-r.R
new file mode 100644
index 0000000..30d715c
--- /dev/null
+++ b/samples/R/hello-r.R
@@ -0,0 +1,4 @@
+hello <- function() {
+ print("hello, world!")
+}
+hello()