home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / AACD / Programming / YAEC / examples / alibtest.e next >
Encoding:
Text File  |  2001-02-23  |  355 b   |  16 lines

  1. -> gadtoolsgadgets.e
  2. -> Simple example of using a number of gadtools gadgets.
  3.  
  4. -> yaec-note : renamed gadtools functions to their real names.
  5. -> yaec-note2 : fixed quotes and doublequotes within strings.
  6.  
  7. EXTERN 'amigalib'    -> yaec
  8.  
  9. PROC main()
  10.    DEF a
  11.    SetRangeSeed(12000)
  12.    FOR a := 0 TO 100
  13.       PrintF('\d\n', RangeRand(100))
  14.    ENDFOR
  15. ENDPROC
  16.