home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p2 / tst / test4.pcat < prev    next >
Text File  |  2005-10-11  |  576b  |  32 lines

  1. (* This is a more thorough test of the various token types *)
  2.  
  3. (* Test all the keywords *)
  4. and    array    begin    by    div    do    else    elseif    end    exit
  5. for    if    is    loop    mod    not    of    or    procedure
  6. program    read    record    return    then    to    type    var    while    write
  7.  
  8. (* Test all the single and double character operators and delimiters *)
  9.   :=  +  -  *  /  <  <= >  >=  =  <> :  ;  ,  .  (  )  [  ] {  }
  10.  
  11. (* Here are some integers *)
  12. 123
  13. 98765
  14.  
  15. (* Here are some reals *)
  16. 12.34
  17. 0.0
  18. 123.
  19.  
  20. (* Here is a
  21.      multi-line
  22.        comment *)
  23.  
  24. (* Here are some strings *)
  25. "abc"
  26. ""
  27. "abcdef"
  28.  
  29.   This is...
  30.  
  31.     THE END.
  32.