14 lines
193 B
Fortran
14 lines
193 B
Fortran
program main
|
|
use math_module
|
|
implicit none
|
|
real :: a, b, result
|
|
|
|
a = 5.0
|
|
b = 10.0
|
|
|
|
call add_number(a, b, result)
|
|
|
|
print *, "the sum of the number is : ", result
|
|
|
|
end program main
|