home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OL.LZH / IDOL.LZH / SEQTEST.IOL < prev    next >
Text File  |  1991-07-18  |  269b  |  8 lines

  1. procedure main()
  2.   decimal   := sequence(255)
  3.   hex       := sequence("0123456789ABCDEF","0123456789ABCDEF")
  4.   octal     := sequence(3,7,7)
  5.   character := sequence(string(&cset))
  6.   while write(right($@decimal,3)," ",$@hex," ",$@octal," ",image($@character))
  7. end
  8.