# Author: Alex # Title: Hello World! # Date: ? # Run R Code: # R command line: $R # Excecute R script from R command line: >source("script") # Excecute R scripts directly: $Rscript [--options] [-e expr [-e expr2 ...] | file] [args] # Use RStudio # As a convention, we will start learning R programming by writing a "Hello, World!" program. # Option 1 print ("Hello, World!") # Option 1 myString <- "Hello, World!" print ( myString)