Hi, I'm new in Visual Studio 2012 and I have to write a program in Visual Fortran. I installed everything and when I want to compile a simply hello world program what I have to do? I open a new project call "hello", and a new fortran file, then I write my hello.f90 program
program hello
implicit none
character(15) string_out
character(40) string_title
string_out='Hello world!'
string_title='Simple hello world using quickwin'
open(unit=4,file='user',title=strig_title)
write(4,'(10x,A15)')string_out
end program hello
and when I click on the start button a message tell me: impossible start the program, don't find hello.exe.
what I forgot to do?





