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

  1. const foo := 1
  2. global barfoo
  3. procedure baz()
  4.   barfoo := "OK"
  5. end
  6. procedure main()
  7.   baz()
  8.   bar1 := "gag!"
  9.   write(foo)
  10.   write(barfoo)
  11.   write("foo")
  12. end
  13.