Creating a scelton¶
First, create a scelton of a grid generating program. Create a new file with the source code in List 18, and save as "sample.f90". At this point, the grid generating program does nothing.
Compile this source code. The way to compile a source code differs by the compiler. Refer to Intel Fortran Compiler (Windows) for the procedure to compile using Intel Fortran Compiler and gfortran.
1program SampleProgram
2 use iric
3 implicit none
4end program SampleProgram
Make sure that the compilation succeeds.