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

  1.       character*100 c
  2.       c = 'line\
  3.        break'
  4.       c = 'LINE\
  5.      $ BREAK'
  6.       c = '\142\040\40\132_\x5ag'
  7.       c = 'abcdefg'
  8.       c = "abcdefg"
  9.       c = c// "don't"
  10.       c = 'He said "yes," I think'
  11.       c = "\n, \\"
  12.       c = "\""
  13.       c = '\' !'
  14. C the next one tests unix_backslash
  15.       c = '\'!'
  16.       end
  17.