view test/nest/persistent_nest.m @ 19940:52d2bbf49c92 rc-4-0-0-1

maint: Bump version number for 4.0.0-rc1.
author John W. Eaton <jwe@octave.org>
date Thu, 05 Mar 2015 10:12:26 -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