view test/nest/varg_nest2.m @ 30949:7d99816e9709 stable

ls.m: Improve wording in docstring (bug #62282).
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 21 Apr 2022 17:52:31 +0200
parents c68b077c8fd6
children
line wrap: on
line source

function x = varg_nest2
  [a, b] = f;
  x = a;

  if (nargout == 1)
    x = a;
  endif

  function [a, b] = f
    if (nargout == 2)
      a = b = 5;
    endif
  endfunction
endfunction