Simulation Core
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

31 righe
598 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. implicit none
  16. ! Variables
  17. ! Body of SimulationCore2
  18. ! print *, 'Hello World'
  19. call read_variables()
  20. ! Initialise the json_file object.
  21. !pause
  22. end program SimulationCore2