view test/nest/nst3.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 6e9034836239
children
line wrap: on
line source

function fh = nst3 (gval)
  global g
  if (nargin > 0)
    g = gval;
  end
  fh = @nst;
  function r = nst (gval)
    if (nargin > 0)
      g = gval;
    end
    r = g;
  end
end