home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / spencer_2bsd.tar.gz / 2bsd.tar / src / pascal / opcodes / x.c < prev   
Encoding:
Text File  |  1980-02-17  |  164 b   |  24 lines

  1. char    *opnames[]
  2. {
  3.     0,
  4.     "unary -",
  5.     "mod",
  6.     "div",
  7.     "/",
  8.     "*",
  9.     "+",
  10.     "-",
  11.     "=",
  12.     "<>",
  13.     "<",
  14.     ">",
  15.     "<=",
  16.     ">=",
  17.     "not",
  18.     "and",
  19.     "or",
  20.     ":=",
  21.     "unary +",
  22.     "in"
  23. };
  24.