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