view test/octave.test/args/args-9.m @ 2332:98d0771f7484

[project @ 1996-07-19 02:14:19 by jwe] Initial revision
author jwe
date Fri, 19 Jul 1996 02:15:59 +0000
parents
children
line wrap: on
line source

1;
function [x, y, z] = f (a, b, c, d, e)
  printf ("nargin: %d, nargout: %d\n", nargin, nargout);
endfunction
[s, t] = f (1, 2, 3, 4);