home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / pcboard / cookppe.zip / COOKIES.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-05-12  |  781b  |  82 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     Integer  INTEGER002
  21.     Integer  INTEGER003
  22.     String   STRING001
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     FOpen 1, "cookies", 0, 0
  27.     FGet 1, STRING001
  28.     INTEGER001 = STRING001
  29.     INTEGER002 = Random(INTEGER001)
  30.     Frewind 1
  31.     For INTEGER003 = 1 To INTEGER002
  32.         FGet 1, STRING001
  33.     Next
  34.     Color 11
  35.     PrintLn STRING001
  36.     End
  37.  
  38. ;------------------------------------------------------------------------------
  39. ;
  40. ; Usage report (before postprocessing)
  41. ;
  42. ; ■ Statements used :
  43. ;
  44. ;    1       End
  45. ;    1       Color 
  46. ;    2       Goto 
  47. ;    4       Let 
  48. ;    1       PrintLn 
  49. ;    1       If 
  50. ;    1       FOpen 
  51. ;    2       FGet 
  52. ;    1       Frewind 
  53. ;
  54. ;
  55. ; ■ Functions used :
  56. ;
  57. ;    1       +
  58. ;    1       <
  59. ;    1       <=
  60. ;    2       >=
  61. ;    1       !
  62. ;    2       &&
  63. ;    1       ||
  64. ;    1       Random()
  65. ;
  66. ;------------------------------------------------------------------------------
  67. ;
  68. ; Analysis flags : No flag
  69. ;
  70. ;------------------------------------------------------------------------------
  71. ;
  72. ; Postprocessing report
  73. ;
  74. ;    1       For/Next
  75. ;    0       While/EndWhile
  76. ;    0       If/Then or If/Then/Else
  77. ;    0       Select Case
  78. ;
  79. ;------------------------------------------------------------------------------
  80. ;                 AEGiS Corp - Break the routines, code against the machines!
  81. ;------------------------------------------------------------------------------
  82.