File: sequence.f

package info (click to toggle)
ftnchek 2.11.2-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,392 kB
  • ctags: 2,790
  • sloc: ansic: 21,570; fortran: 2,921; yacc: 2,794; sh: 1,623; makefile: 693; lisp: 264; awk: 163
file content (9 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
C tests message about statement out of order.
      data x /1.0/
      integer a,b,c
      common a,b,c
      sqr(y)=y*y
      double precision d
      read(*,*) a,b,c,d
      write(*,*) a,b,c,d,sqr(x)
      end