DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / modules_09_b.f90
1234567891011121314
module modules_09_b implicit none private public b, i integer, parameter :: i = 5 contains integer function b() b = 5 end function end module