I'm just trying to convert a basic helloworld.f program into C++ using fable (in preparation for a bigger program later). I'm getting an error though that says:
fable.read.Error: Missing END for PROGRAM:
at hello.f(1):
| program HelloWorld|
Which I don't understand as it compiles and runs properly otherwise. The program is just:
program HelloWorld
implicit none
write (*,*) 'Hello, world!' ! This is an inline comment
end program HelloWorld
Does anyone see the issue that fable is finding? I've never used it before so I'm just trying to see how it works. Thanks in advance for any help!