Advertisement
Guest User

oop_resource_output

a guest
Sep 12th, 2021
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. oop_test $ gfortran-10 oop_resource.f90 -o oop_gfort && ./oop_gfort
  2. iostream open A
  3. iostream open B
  4. iostream read B
  5. iostream open C
  6. iostream read C
  7. iostream close A
  8. oop_test $ ifort oop_resource.f90 -o oop_ifort && ./oop_ifort
  9. iostream open A
  10. iostream close null
  11. iostream close A
  12. iostream open B
  13. iostream read B
  14. iostream close B
  15. iostream open C
  16. iostream read C
  17. iostream close C
  18. iostream close A
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement