#! /usr/bin/env python # def i8lib_test ( ): #*****************************************************************************80 # ## I8LIB_TEST tests the I8LIB library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 09 August 2017 # # Author: # # John Burkardt # import platform from i8vec_print import i8vec_print_test from timestamp import timestamp_test print ( '' ) print ( 'I8LIB_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the I8LIB library.' ) i8vec_print_test ( ) timestamp_test ( ) # # Terminate. # print ( '' ) print ( 'I8LIB_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) i8lib_test ( ) timestamp ( )