home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / BIPL.ZIP / IDOL.ZIP / CONSTTST.IOL < prev    next >
Encoding:
Text File  |  1991-12-30  |  168 b   |  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.