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 / args / args-7.m < prev    next >
Text File  |  1996-09-28  |  119b  |  7 lines

  1. 1;
  2. function [x, ...] = f (...)
  3.   printf ("nargin: %d, nargout: %d\n", nargin, nargout);
  4.   x = 2;
  5. endfunction
  6. x = f ();
  7.