view test/nest/varg_nest2.m @ 31213:bc385e42e09a

NEWS.8.md: Announce new legend property "itemhitfcn" * NEWS.8.md: Announce new legend property "itemhitfcn".
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Mon, 29 Aug 2022 18:36:17 +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