Simulation Core
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

33 行
665 B

  1. ! SimulationCore2.f90
  2. !
  3. ! FUNCTIONS:
  4. ! SimulationCore2 - Entry point of console application.
  5. !
  6. !****************************************************************************
  7. !
  8. ! PROGRAM: SimulationCore2
  9. !
  10. ! PURPOSE: Entry point for the console application.
  11. !
  12. !****************************************************************************
  13. program SimulationCore2
  14. use Simulator
  15. !use testRedisModule
  16. implicit none
  17. ! Variables
  18. ! Body of SimulationCore2
  19. ! print *, 'Hello World'
  20. ! call read_variables()
  21. call simulate()
  22. ! Initialise the json_file object.
  23. !call testRedis()
  24. pause
  25. end program SimulationCore2