blob: 3c562c49dd5846420e76aa488f772b96e717e6e3 [file] [log] [blame]
Hao Zhue4145112015-11-05 17:52:59 -05001# Hello, world!
2#
3# This is an example function named 'hello'
4# which prints 'Hello, world!'.
5#
6# You can learn more about package authoring with RStudio at:
7#
8# http://r-pkgs.had.co.nz/
9#
10# Some useful keyboard shortcuts for package authoring:
11#
12# Build and Reload Package: 'Ctrl + Shift + B'
13# Check Package: 'Ctrl + Shift + E'
14# Test Package: 'Ctrl + Shift + T'
15
16hello <- function() {
17 print("Hello, world!")
18}