function hello( ) #*****************************************************************************80 # ## hello() prints a friendly message. # # Discussion: # # Documentation about putting using quoted strings as documentation # is misleading or wrong. Pound sign comments work just fine. # # Unbelievably, putting a space between "println" and the ensuring "(" # is nanny-flagged as deprecated syntax. So this language makes the # grotesque mistake of worrying about blanks. # # Licensing: # # This code is distributed under the MIT license. # # Modified: # # 28 March 2024 # # Author: # # John Burkardt # println( "Hello, world!" ) return end