blob: 089764f2bbe6ddaa8d9eb1408336a10a9fa80d13 [file] [log] [blame]
program namesProv2
implicit none
common /names/ a_hello, b_hello, c_hello
integer a_hello, b_hello, c_hello
a_hello = 2
b_hello = 4
c_hello = a_hello + b_hello
end program namesProv2