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

123456789101112
  1. module logging
  2. integer::log_level=0
  3. contains
  4. subroutine logg(level,message)
  5. integer::level
  6. character(len=*)::message
  7. if(log_level>=level) then
  8. print *,message
  9. endif
  10. end subroutine
  11. end module