Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- oop_test $ gfortran-10 oop_resource.f90 -o oop_gfort && ./oop_gfort
- iostream open A
- iostream open B
- iostream read B
- iostream open C
- iostream read C
- iostream close A
- oop_test $ ifort oop_resource.f90 -o oop_ifort && ./oop_ifort
- iostream open A
- iostream close null
- iostream close A
- iostream open B
- iostream read B
- iostream close B
- iostream open C
- iostream read C
- iostream close C
- iostream close A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement