!----------------------------- ! ! Write something on screen ! !------------------------------ ! PROGRAM SIMPLE IMPLICIT NONE !- The important IMPLICIT NONE statement write(6,*)'Write this on screen' write(6,*) 'Notice: Inside character string ! does not start a comment.' END PROGRAM SIMPLE