Simulation Core
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CLessonVariables.f90 223 B

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