#*****************************************************************************80 # ## counter_test() tests counter(). # # Licensing: # # This code is distributed under the MIT license. # # Modified: # # 12 May 2021 # # Author: # # John Burkardt # cat ( date ( ), "\n" ) cat ( "\n" ) cat ( "counter_test():\n" ) cat ( " ", version$version.string, "\n" ) cat ( " Test counter(), with the interface:\n" ) cat ( " counter()\n" ) cat ( "\n" ) source ( "/home/john/public_html/r_src/persistence/counter.R" ) for ( i in 1:10 ) { counter ( ) } # # Terminate. # cat ( "\n" ) cat ( "counter_test():\n" ) cat ( " Normal end of execution.\n" ) cat ( date ( ), "\n" ) quit ( )