view test/nest/arg_nest.m @ 33608:5fba13104493 bytecode-interpreter tip

maint: merge default to bytecode-interpreter.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Sat, 18 May 2024 22:40:00 -0400
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