Any Fortran program has to include end as last statement. Therefore, the simplest Fortran program looks like this:
end
Here are some examples of "hello, world" programs:
print *, "Hello, world"
end
With write statement:
write(*,*) "Hello, world"
end
For c...