DEFECT: README shows incorrect Fortran variable declaration placement causing compilation failure
REPRODUCTION:
- Copy README object-oriented API example exactly
- Variable declaration after executable statements: type(figure_t) :: fig
- Compilation fails: 'Unexpected data declaration statement'
EVIDENCE:
- README line 49: Shows type(figure_t) :: fig after executable code
- Fortran requires all declarations before executable statements
- Code compiles when declaration moved to top of program
USER IMPACT: HIGH - New users copying README examples get compilation failures
ROOT CAUSE: Fortran syntax error in documentation
SCOPE: README.md documentation accuracy
SOLUTION: Move all variable declarations to declaration section of program