! SimulationCore2.f90 ! ! FUNCTIONS: ! SimulationCore2 - Entry point of console application. ! !**************************************************************************** ! ! PROGRAM: SimulationCore2 ! ! PURPOSE: Entry point for the console application. ! !**************************************************************************** program SimulationCore2 use Simulator use RedisInterface !use testRedisModule implicit none ! character(len=200)::s ! Variables ! Body of SimulationCore2 ! print *, 'Hello World' ! call read_variables() call simulate() ! Initialise the json_file object. ! call testRedis() ! pause end program SimulationCore2