view test/nest/persistent_nest.m @ 18526:dd669c2ae76c stable rc-3-8-1-4

3.8.1 release candidate 4 * configure.ac (OCTAVE_VERSION): Bump to 3.8.1-rc4. (OCTAVE_MINOR_VERSION): Bump to 1-rc4. (OCTAVE_RELEASE_DATE): Set to 2014-02-26.
author John W. Eaton <jwe@octave.org>
date Thu, 27 Feb 2014 11:02:23 -0500
parents be18c9e359bf
children
line wrap: on
line source

# persistent_nest
function y = persistent_nest ()
  persistent x = 0;
  g;
  y = x;

  function g
    x = x + 1;
  end
end