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

  1.       character c(10,10)
  2.       data c /'1'/
  3.       call suba(c)
  4.       end
  5.       subroutine suba(c)
  6.       character c(100)
  7.       print *,c
  8.       end
  9.