home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fchek284.zip / test / args01.f next >
Text File  |  1994-11-06  |  132b  |  9 lines

  1.       integer c(100)
  2.       c(1) = 1
  3.       call suba(c)
  4.       end
  5.       subroutine suba(c)
  6.       integer c
  7.       print *,c
  8.       end
  9.