program source_form implicit none integer :: a ! End of line or semicolon marks end of fortran statement. ! A line can be 0 to 132 characters long. print *, 'statement 1'; print *, 'statement 2' print *, 'A statement is continued on the next line ', & 'if the line ends with an ampersand.' print *, 'If the continuing line is starting with an & &ersand leading blanks are ignored.' ! Character case is not significant, e.g. a = 0; A = 1 print *, 'A=', A, ' a=',a ! will print A=1 a=1 end program source_form