Simulation Core
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

CLessonVariables.f90 223 B

1 rok temu
1 rok temu
1 rok temu
123456789
  1. module CLessonVariables
  2. implicit none
  3. public
  4. type:: LessonType
  5. logical :: IsPathGeneration
  6. logical :: IsWellSurveyData
  7. end type LessonType
  8. type(LessonType)::Lesson
  9. end module CLessonVariables