home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / test / octave.test / if / if-6.m < prev    next >
Text File  |  1996-09-28  |  111b  |  10 lines

  1. x = 0;
  2. y = -2;
  3. if (y)
  4.   printf ("pass\n");
  5. elseif (x)
  6.   printf ("fail\n");
  7. elseif (x)
  8.   printf ("fail\n");
  9. end
  10.