view test/octave.test/args/args-9.m @ 5301:9302581b820d ss-2-9-2

[project @ 2005-04-22 17:08:07 by jwe]
author jwe
date Fri, 22 Apr 2005 17:09:11 +0000
parents 98d0771f7484
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);