home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #12 / K-CD-12-2002.ISO / GraphCalc / scripts / Examples / if.gcs next >
Encoding:
Text File  |  2000-11-26  |  194 b   |  13 lines

  1. #If Example
  2. If(irand(0:100) > 50)
  3.     [Comment="If"]
  4. ElseIf(irand(0:10) < 5)
  5.     [Comment="first ElseIf"]
  6. ElseIf(irand(0:10) > 5)
  7.     [Comment="second ElseIf"]
  8. Else
  9.     [Comment="Else"]
  10. EndIf
  11.  
  12.  
  13.