hello <- function ( ) #*****************************************************************************80 # ## hello is a simple R function that says "Hello, world!". # # Licensing: # # This code is distributed under the MIT license. # # Modified: # # 14 August 2011 # # Author: # # John Burkardt # { cat ( "\n" ) cat ( "Hello, world!\n" ) }