view test/nest/counter.m @ 29901:ee84485289ce

maint: cuddle postfix operator with variable for clarity. * __strip_html_tags__.m: cuddle postfix operator with variable for clarity.
author Rik <rik@octave.org>
date Wed, 21 Jul 2021 09:42:28 -0700
parents 7c9a681c4474
children
line wrap: on
line source

function fcnHandle = counter
  value = 0;
  function currentValue = increment
    value = value+1;
    currentValue = value;
  end
  fcnHandle = @increment;
end