#! /usr/bin/env python # def filum_test ( ): #*****************************************************************************80 # ## FILUM_TEST tests the FILUM library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 13 September 2018 # # Author: # # John Burkardt # import platform from file_column_count import file_column_count_test from file_row_count import file_row_count_test print ( '' ) print ( 'FILUM_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the FILUM library.' ) file_column_count_test ( ) file_row_count_test ( ) # # Terminate. # print ( '' ) print ( 'FILUM_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) filum_test ( ) timestamp ( )