home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / colobotdemo / colobotdemo10e.exe / script / tfor2.txt < prev    next >
Text File  |  2001-06-10  |  235b  |  11 lines

  1. extern void object::Solution( )
  2. {
  3.     for ( int i=0 ; i<4 ; i=i+1 )  // rΘpΦte 4x
  4.     {
  5.         move(10);   // avance de 10 mΦtres
  6.         turn(90);   // quart de tour α gauche
  7.         fire(1);    // dΘtruit la cible
  8.         turn(-180); // demi-tour
  9.     }
  10. }
  11.