Why does compilation of my standard Fortran source terminate with an error message?
• HicEst is Fortran-based but not a full implementation (Features). As an example, if your source starts with • program my_program • implicit none • integer(kind=2) :: something the keywords program, implicit, integer are not recognized. Many features of standard Fortran are simply not needed for HicEst”s interpreter (e.g. integer: all numerics is in 8-byte real). Other features like implicit none would be highly desirable for a better programming style, but would also be contra-productive to our motto Instant Prototype Computing. • You might want to prefix all lines of your program with a “!” to make it comments only. Then load it to HicEst and uncomment the meat of your algorithm, line after line.
Related Questions
- When I try to compile a program with the Fortran 90 compiler I get the following error message: cft90 INTERNAL: Cannot retrieve message 3 from the message system. What does this message mean?
- During compilation using a gcc 3.4.1 I get the error message: INT64_MIN was not declared in this scope. How to handle that error?
- Why does compilation of my standard Fortran source terminate with an error message?