view test/nest/arg_nest.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 fc4bb4bd1d5e
children
line wrap: on
line source

## arg_nest.m
function x = arg_nest
  x = 1;
  A (x);
  function A (x)
    x = 2;
  endfunction
endfunction