Topic: Trying to replace Pause statement
In order to check the progress of my code, I use  a print statement followed by a Read statement
 that should halt execution and wait for a key press.
Print *, " Begin Pass 56 on 20 Jan 2018  Enter any key then press enter"
Read(*,*)anyKey  
always  halts execution
But further on in the code:
Print *, " Does this line appear after the grid is displayed ?" 
Read(*,*)anyKey
Does not halt execution.
Also, I think the Pause statement is deprecated ?
Bob