initial commit
diff --git a/R/hello.R b/R/hello.R
new file mode 100644
index 0000000..3c562c4
--- /dev/null
+++ b/R/hello.R
@@ -0,0 +1,18 @@
+# Hello, world!
+#
+# This is an example function named 'hello'
+# which prints 'Hello, world!'.
+#
+# You can learn more about package authoring with RStudio at:
+#
+# http://r-pkgs.had.co.nz/
+#
+# Some useful keyboard shortcuts for package authoring:
+#
+# Build and Reload Package: 'Ctrl + Shift + B'
+# Check Package: 'Ctrl + Shift + E'
+# Test Package: 'Ctrl + Shift + T'
+
+hello <- function() {
+ print("Hello, world!")
+}