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

function a = arg_ret
  a = 10;
  f;
  function a = f
    a = 5;
  endfunction
endfunction